Added support for program arguments (fix #27)
This commit is contained in:
parent
0d8ae8d7bb
commit
cb9e36d6db
4 changed files with 21 additions and 10 deletions
|
|
@ -28,8 +28,8 @@ export interface SSHArguments {
|
|||
}
|
||||
|
||||
export interface IBackend {
|
||||
load(cwd: string, target: string): Thenable<any>;
|
||||
ssh(args: SSHArguments, cwd: string, target: string): Thenable<any>;
|
||||
load(cwd: string, target: string, procArgs: string): Thenable<any>;
|
||||
ssh(args: SSHArguments, cwd: string, target: string, procArgs: 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