/// import { ExecOptions } from "child_process"; import { ActionResult } from "../ActionResult"; export interface ChildProcess { exitCode: number; killed: boolean; pid: number; } export interface CommandResult extends ActionResult { stdout: string; stderr: string; childProcess: ChildProcess; } /** * Run a child process as promise, with basic type information * @param {string} cmd * @param {"child_process".ExecOptions} opts * @return {Promise} */ export declare function runCommand(cmd: string, opts: ExecOptions): Promise; //# sourceMappingURL=commandLine.d.ts.map