lambda-live-debugger
Version:
Debug Lambda functions locally like it is running in the cloud
11 lines (10 loc) • 313 B
TypeScript
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;
};