UNPKG

aws-cdk

Version:

CDK Toolkit, the command line tool for CDK apps

7 lines (6 loc) 237 B
/** * Run a number of promise generators with max parallelism * * Order is not maintained between the input and output. */ export declare function parallelPromises<A>(n: number, promises: Array<() => Promise<A>>): Promise<Array<A>>;