Recently, I encountered an issue while attempting to utilize a specific node module called aws-api-gateway-client
Although the installation was successful, I am facing difficulties with importing this module due to an error.
Oddly enough, it works seamlessly in projects that do not involve Angular2 and Typescript (I'm currently using the angular-cli tool for my initial project).
import apigClientFactory from 'aws-api-gateway-client'
I also attempted the following:
import * as apigClientFactory from 'aws-api-gateway-client'
However, these methods have proven ineffective as I am encountering the following error in the console:
Cannot find module 'aws-api-gateway-client'.
If anyone has insights or solutions regarding this problem, your assistance would be greatly appreciated.