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) 274 B
import { OutgoingHttpHeaders } from "http"; import { LambdaResponseHeaders } from "./types"; declare const fixResponseHeaders: (headers: OutgoingHttpHeaders, supportMultiHeaders: boolean, supportCookies: boolean) => LambdaResponseHeaders; export default fixResponseHeaders;