UNPKG

express-to-lambda

Version:

Simple package for converting your express application to an AWS Lambda.

6 lines (5 loc) 173 B
import { Handler } from "aws-lambda"; import { Application } from "express"; type Adapter = (app: Application) => Handler; export declare const adapter: Adapter; export {};