You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.d.ts 318B

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