UNPKG

@scloud/lambda-local

Version:

Run typical Lambda handlers locally.

6 lines (5 loc) 324 B
import { APIGatewayProxyEvent, APIGatewayProxyResult, Context } from 'aws-lambda'; export interface CloudfrontPathMappings { [key: string]: (event: APIGatewayProxyEvent, context: Context) => Promise<APIGatewayProxyResult>; } export declare function cloudfrontLocal(cloudfrontPathMappings: CloudfrontPathMappings): void;