Reworked git access

Cleaned up the blame hightlights (wip)
This commit is contained in:
Eric Amodio
2016-08-26 18:27:38 -04:00
parent 03d4cc8597
commit 1576c08fa8
8 changed files with 125 additions and 143 deletions

13
typings/spawn-rx.d.ts vendored Normal file
View File

@@ -0,0 +1,13 @@
/// <reference path="../node_modules/rxjs/Observable.d.ts" />
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): 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>;
}
export = spawnrx;
}