1 |
|
2 | import * as Execa from 'execa';
|
3 |
|
4 |
|
5 |
|
6 | export declare const env: NodeJS.ProcessEnv;
|
7 |
|
8 |
|
9 |
|
10 |
|
11 |
|
12 | export declare function x(cmd: string, options?: Execa.Options): Promise<Execa.ExecaReturns>;
|
13 | export declare function x(cmd: string, args: string[], options?: Execa.Options): Promise<Execa.ExecaReturns>;
|
14 | export declare namespace x {
|
15 | function exec(cmd: string, args: string[], options?: Execa.Options): Execa.ExecaChildProcess;
|
16 | function shell(cmd: string, options?: Execa.Options): Execa.ExecaChildProcess;
|
17 | function stdout(cmd: string, args?: string[], options?: Execa.Options): Promise<string>;
|
18 | }
|