UNPKG

@aws-cdk-testing/cli-integ

Version:

Integration tests for the AWS CDK CLI

6 lines (5 loc) 301 B
export type ErrorResponse = 'fail' | 'skip' | 'retry'; /** * Run a function in parallel with cached output */ export declare function parallelShell<A>(inputs: A[], block: (x: A, output: NodeJS.WritableStream) => Promise<void>, swallowError?: (x: A, output: string) => ErrorResponse): Promise<void>;