awscdk-construct-live-channel-from-mp4-file
Version:
CDK Construct for setting up a simple live channel for testing
12 lines (11 loc) • 395 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;