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.

11 lines (10 loc) 443 B
import { EndpointParameters, SerializeMiddleware } from "@smithy/types"; import { EndpointResolvedConfig } from "./resolveEndpointConfig"; import { EndpointParameterInstructions } from "./types"; /** * @internal */ export declare const endpointMiddleware: <T extends EndpointParameters>({ config, instructions, }: { config: EndpointResolvedConfig<T>; instructions: EndpointParameterInstructions; }) => SerializeMiddleware<any, any>;