Getting this issue - [TypeError: params.context.succeed is not a function](https://github.com/vendia/serverless-express/issues/231 ). It is fixed in newer aws-serverless-express package version. Solution: ``` import serverlessExpress from '@vendia/serverless-express'; // ^4.5.4 import Koa from 'koa'; const app = new Koa(); module.exports.handler = serverlessExpress({ app: app.callback() }); ```
Getting this issue - TypeError: params.context.succeed is not a function. It is fixed in newer aws-serverless-express package version.
Solution: