Files

7 lines
229 B
TypeScript
Raw Permalink Normal View History

2025-10-11 10:47:07 +08:00
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>;