DefinitelyTyped/types/nodegit/fetch.d.ts
2017-06-07 02:30:05 +01:00

14 lines
293 B
TypeScript

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;
}