index.d.ts 552 B

12345
  1. /// <reference types="node" />
  2. /// <reference types="node" />
  3. export declare function exec(command: string, stdout?: ((...args: any[]) => void) | NodeJS.WriteStream, stderr?: ((...args: any[]) => void) | NodeJS.WriteStream, stdin?: NodeJS.ReadableStream | string): Promise<string>;
  4. export declare function spawn(command: string, args: string[], stdout?: ((...args: any[]) => void) | NodeJS.WriteStream, stderr?: ((...args: any[]) => void) | NodeJS.WriteStream, stdin?: NodeJS.ReadableStream | string): Promise<void>;
  5. //# sourceMappingURL=index.d.ts.map