mirror of
https://github.com/ckaczor/vscode-gitlens.git
synced 2026-02-08 09:38:30 -05:00
Adds support for custom git installation locations
Also gracefully deals with the times when git isn't in the PATH
This commit is contained in:
10
src/@types/spawn-rx/index.d.ts
vendored
10
src/@types/spawn-rx/index.d.ts
vendored
@@ -3,11 +3,11 @@ declare module "spawn-rx" {
|
||||
import { Observable } from 'rxjs/Observable';
|
||||
|
||||
namespace spawnrx {
|
||||
function findActualExecutable(exe: string, args: Array<string>): { cmd: string, args: Array<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>;
|
||||
function findActualExecutable(exe: string, args?: Array<string> | undefined): { cmd: string, args: Array<string> };
|
||||
function spawnDetached(exe: string, params?: Array<string> | undefined, opts?: Object | undefined): Observable<string>;
|
||||
function spawn(exe: string, params?: Array<string> | undefined, opts?: Object | undefined): Observable<string>;
|
||||
function spawnDetachedPromise(exe: string, params?: Array<string> | undefined, opts?: Object | undefined): Promise<string>;
|
||||
function spawnPromise(exe: string, params?: Array<string> | undefined, opts?: Object | undefined): Promise<string>;
|
||||
}
|
||||
export = spawnrx;
|
||||
}
|
||||
Reference in New Issue
Block a user