UNPKG

cmake-ts

Version:

cmake-js rewrite in typescript to support advanced build configurations

7 lines (6 loc) 271 B
/** * Capture the output of a command * @note this ignores the running errors */ export declare function execCapture(command: string): Promise<string>; export declare function runProgram(program: string, args: string[], cwd?: string, silent?: boolean): Promise<void>;