UNPKG

definition-tester

Version:
9 lines (8 loc) 270 B
import * as Promise from 'bluebird'; export declare class ExecResult { error: Error; exitCode: number; stdout: string; stderr: string; } export declare function exec(commandName: string, cmdLineArgs: string[], cwd?: string): Promise<ExecResult>;