UNPKG

lambda-live-debugger

Version:

Debug Lambda functions locally like it is running in the cloud

11 lines (10 loc) 313 B
import type { HttpRequest as IHttpRequest, QueryParameterBag } from "@smithy/types"; /** * @internal */ export declare const moveHeadersToQuery: (request: IHttpRequest, options?: { unhoistableHeaders?: Set<string>; hoistableHeaders?: Set<string>; }) => IHttpRequest & { query: QueryParameterBag; };