UNPKG

serverless-spy

Version:

CDK-based library for writing elegant integration tests on AWS serverless architecture and an additional web console to monitor events in real time.

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>;