UNPKG

lambda-live-debugger

Version:

Debug Lambda functions locally like it is running in the cloud

12 lines (11 loc) 556 B
import { EndpointParameters, Pluggable, RelativeMiddlewareOptions, SerializeHandlerOptions } from "@smithy/types"; import { EndpointResolvedConfig } from "./resolveEndpointConfig"; import { EndpointParameterInstructions } from "./types"; /** * @internal */ export declare const endpointMiddlewareOptions: SerializeHandlerOptions & RelativeMiddlewareOptions; /** * @internal */ export declare const getEndpointPlugin: <T extends EndpointParameters>(config: EndpointResolvedConfig<T>, instructions: EndpointParameterInstructions) => Pluggable<any, any>;