mirror of
https://gitee.com/myxzgzs/boyue_jnpf.git
synced 2025-08-11 00:32:45 +08:00
7 lines
229 B
TypeScript
7 lines
229 B
TypeScript
![]() |
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>;
|