@znode/execa
Version:
Node.js Exec Sub Shell
20 lines (19 loc) • 676 B
TypeScript
export declare function registerGlobals(): void;
export declare function $(pieces: TemplateStringsArray, ...args: any[]): Promise<string>;
export declare namespace $ {
var verbose: boolean;
var shell: any;
var prefix: string;
var quote: typeof import("./utils").quote;
var cwd: any;
var timeout: any;
var env: any;
var raw: any;
var strict: boolean;
var unsafe: typeof import("./commands").unsafe;
var cd: typeof import("./commands").cd;
var kill: typeof import("./commands").kill;
var spawn: typeof import("./commands").spawn;
var runShell: typeof import("./commands").runShell;
}
export declare const execa: typeof $;