Metzploreur/node_modules/@smithy/smithy-client/dist-types/create-aggregated-client.d.ts
clement callaert 244d45ceb8 Version 2
2023-11-01 17:33:25 +01:00

9 lines
388 B
TypeScript

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;