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) 296 B
import { LambdaResponse } from "./types"; import { Response } from "light-my-request"; export declare const inProcessResponseToLambdaResponse: (response: Response, supportMultiHeaders: boolean, supportCookies: boolean) => LambdaResponse; export declare const errorResponse: () => LambdaResponse;