@altano/repository-tools
Version:
Misc tools for dealing with repositories of multiple version control systems (git, svn, etc)
8 lines (7 loc) • 317 B
TypeScript
import { exec, execFile, execFileSync, execSync } from "child_process";
//#region src/exec.d.ts
declare const execAsync: typeof exec.__promisify__;
declare const execFileAsync: typeof execFile.__promisify__;
//#endregion
export { execAsync, execFileAsync, execFileSync, execSync };
//# sourceMappingURL=exec.d.ts.map