/// import * as childProcess from 'child_process'; import { IResult } from '../common'; export declare type ISpawnPromise = Promise & { child: childProcess.ChildProcess; options: childProcess.SpawnOptions; }; export declare function spawn(command: string | string[], options?: childProcess.SpawnOptions): ISpawnPromise;