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.

10 lines (9 loc) 388 B
import { Client } from "./client"; /** * @internal * * @param commands - command lookup container. * @param client - client instance on which to add aggregated methods. * @returns an aggregated client with dynamically created methods. */ export declare const createAggregatedClient: (commands: Record<string, any>, Client: new (...args: any) => Client<any, any, any, any>) => void;