You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
578 B

/// <reference types="node" />
import { ChildProcess, SpawnOptions as NodeSpawnOptions } from 'child_process';
export interface SpawnOptions extends NodeSpawnOptions {
ignoreStdio?: boolean;
}
export interface SpawnPromise<T> extends Promise<T> {
child: ChildProcess;
}
export interface SpawnResult {
pid: number;
output: string[];
stdout: string;
stderr: string;
status: number | null;
signal: string | null;
}
export default function spawnAsync(command: string, args?: ReadonlyArray<string>, options?: SpawnOptions): SpawnPromise<SpawnResult>;