@mbc-cqrs-serverless/core
Version:
CQRS and event base core
13 lines (12 loc) • 414 B
TypeScript
import { Handler } from 'aws-lambda';
import { AppModuleOptions } from './interfaces';
/**
* Create Lambda handler
*
* Node.js 24 compatibility:
* - Handler signature is (event, context) only
* - callback parameter is not used (not supported in Node.js 24)
*
* @see https://docs.aws.amazon.com/lambda/latest/dg/nodejs-handler.html
*/
export declare function createHandler(opts: AppModuleOptions): Handler;