2024-05-08 21:08:47 +00:00
|
|
|
export declare class Shell {
|
|
|
|
private child;
|
|
|
|
private log;
|
|
|
|
private bin;
|
|
|
|
private args;
|
2024-11-04 20:13:59 +00:00
|
|
|
private opts;
|
2024-05-08 21:08:47 +00:00
|
|
|
private lines;
|
|
|
|
private stdio;
|
|
|
|
private stderr;
|
|
|
|
private after;
|
|
|
|
private silent;
|
2024-11-04 20:13:59 +00:00
|
|
|
constructor(args: any[], env?: any, stdio?: Function, stderr?: Function, after?: Function, silent?: boolean);
|
2024-05-08 21:08:47 +00:00
|
|
|
execute(): Promise<number>;
|
|
|
|
kill(): void;
|
|
|
|
}
|