index.d.ts 318 Bytes
Newer Older
1 2 3 4
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;