Files
Remote-Control-Center/mc_test/node_modules/@electron/notarize/lib/spawn.d.ts
2025-11-25 09:56:15 +03:00

7 lines
229 B
TypeScript
Executable File

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>;