blob: e1dfc1e42f33a607265c469b0fbf5ee0bd4bacbf (
plain)
1
2
3
4
5
6
|
import { SpawnOptions } from 'child_process';
export interface SpawnResult {
code: number | null;
output: string;
}
export declare const spawn: (cmd: string, args?: string[], opts?: SpawnOptions) => Promise<SpawnResult>;
|