mirror of
https://github.com/ckaczor/vscode-gitlens.git
synced 2026-02-16 10:58:34 -05:00
Fixes #7 - missing lodash dependency
This commit is contained in:
8
typings/spawn-rx.d.ts
vendored
8
typings/spawn-rx.d.ts
vendored
@@ -4,10 +4,10 @@ declare module "spawn-rx" {
|
||||
|
||||
namespace spawnrx {
|
||||
function findActualExecutable(exe: string, args: Array<string>): { cmd: string, args: Array<string> };
|
||||
function spawnDetached(exe: string, params: Array<string>, opts: Object): Observable<string>;
|
||||
function spawn(exe: string, params: Array<string>, opts: Object): Observable<string>;
|
||||
function spawnDetachedPromise(exe: string, params: Array<string>, opts: Object): Promise<string>;
|
||||
function spawnPromise(exe: string, params: Array<string>, opts: Object): Promise<string>;
|
||||
function spawnDetached(exe: string, params: Array<string>, opts: Object|undefined): Observable<string>;
|
||||
function spawn(exe: string, params: Array<string>, opts: Object|undefined): Observable<string>;
|
||||
function spawnDetachedPromise(exe: string, params: Array<string>, opts: Object|undefined): Promise<string>;
|
||||
function spawnPromise(exe: string, params: Array<string>, opts: Object|undefined): Promise<string>;
|
||||
}
|
||||
export = spawnrx;
|
||||
}
|
||||
Reference in New Issue
Block a user