UNPKG

lambda-request-handler

Version:

An npm module that allows your Node.js web applications to be deployed as an AWS Lambda function and invoked in response to API Gateway, HTTP API, or Application Load Balancer requests.

5 lines (4 loc) 252 B
import { type InjectOptions } from "light-my-request"; import { APIGatewayEvent, LambdaContext } from "./types"; declare const eventToRequestOptions: (event: APIGatewayEvent, ctx?: LambdaContext) => InjectOptions; export default eventToRequestOptions;