index.d.ts 337 B

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