Added support to run process in a separate console (fix #28)
This commit is contained in:
parent
cb9e36d6db
commit
30731c2ba1
6 changed files with 64 additions and 12 deletions
|
|
@ -28,8 +28,8 @@ export interface SSHArguments {
|
|||
}
|
||||
|
||||
export interface IBackend {
|
||||
load(cwd: string, target: string, procArgs: string): Thenable<any>;
|
||||
ssh(args: SSHArguments, cwd: string, target: string, procArgs: string): Thenable<any>;
|
||||
load(cwd: string, target: string, procArgs: string, separateConsole: string): Thenable<any>;
|
||||
ssh(args: SSHArguments, cwd: string, target: string, procArgs: string, separateConsole: string): Thenable<any>;
|
||||
attach(cwd: string, executable: string, target: string): Thenable<any>;
|
||||
connect(cwd: string, executable: string, target: string): Thenable<any>;
|
||||
start(): Thenable<boolean>;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue