15 lines
352 B
TypeScript
15 lines
352 B
TypeScript
|
export declare class Shell {
|
||
|
private child;
|
||
|
private log;
|
||
|
private bin;
|
||
|
private args;
|
||
|
private lines;
|
||
|
private stdio;
|
||
|
private stderr;
|
||
|
private after;
|
||
|
private silent;
|
||
|
constructor(args: any[], stdio?: Function, stderr?: Function, after?: Function, silent?: boolean);
|
||
|
execute(): Promise<number>;
|
||
|
kill(): void;
|
||
|
}
|