I'm trying out the framework and stumbled on a problem. It seems like the version published to NPM doesn't contain the aws/container.ts file nor its exported.
import 'reflect-metadata';
export { LambdaAdapter, RemoteEvent, LambdaApiEvent, LambdaS3Event, LambdaDynamoEvent, LambdaEventRecord, LambdaS3Record, LambdaDynamoRecord, LambdaContext, LambdaCallback, LambdaHandler, } from './adapter';
export { LambdaError, } from './error';
export { LambdaProxy, } from './proxy';
export { S3ObjectCreated, SQSMessageReceived, DynamoDbInsert, DynamoDbModify, DynamoDbRemove, Schedule, } from './events';
I have tried a couple of versions and the issue seems to be consistent. I can get the file getting the dependency from GitHub in the meantime.
I'm trying out the framework and stumbled on a problem. It seems like the version published to NPM doesn't contain the
aws/container.tsfile nor its exported.The
aws/index.d.tslooks like this:I have tried a couple of versions and the issue seems to be consistent. I can get the file getting the dependency from GitHub in the meantime.
Thanks!