I'm trying to use this node module: aws-api-gateway-client
Installation is successful but I cannot use this module because of importing module error.
I don't understand why it works in any projects without angular2 and typescript (I'm using angular-cli tool for my starter project).
import apigClientFactory from 'aws-api-gateway-client'
I also tried with:
import * as apigClientFactory from 'aws-api-gateway-client'
but It doesn't work, this is the error showed in console:
Cannot find module 'aws-api-gateway-client'.
Can anyone help me with this problem?