UNPKG

aws-cdk

Version:

CDK Toolkit, the command line tool for CDK apps

12 lines (11 loc) 289 B
export interface Invocation { commandLine: string; cwd?: string; exitCode?: number; stdout?: string; /** * Run this function as a side effect, if present */ sideEffect?: () => void; } export declare function mockSpawn(...invocations: Invocation[]): void;