Files
marianesaldana 80dbd947e5 Initial commit
2026-05-23 08:59:34 -06:00

5 lines
318 B
TypeScript

export function exec(cmd: string,
options?: ((error?: Error, stdout?: string | Buffer, stderr?: string | Buffer) => void)
| { name?: string, icns?: string, env?: { [key: string]: string } },
callback?: (error?: Error, stdout?: string | Buffer, stderr?: string | Buffer) => void): void;