Added Fetch

This commit is contained in:
Dolan
2017-06-07 02:30:05 +01:00
parent 27d38b770f
commit df90245f99
3 changed files with 15 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
import { FetchOptions } from './fetch-options';
export namespace Fetch {
enum PRUNE {
GIT_FETCH_PRUNE_UNSPECIFIED = 0,
GIT_FETCH_PRUNE = 1,
GIT_FETCH_NO_PRUNE = 2
}
}
export class Fetch {
static initOptions(opts: FetchOptions, version: number): number;
}