1 | import { FetchOptions } from "./fetch-options";
|
2 |
|
3 | export namespace Fetch {
|
4 | const enum PRUNE {
|
5 | GIT_FETCH_PRUNE_UNSPECIFIED = 0,
|
6 | GIT_FETCH_PRUNE = 1,
|
7 | GIT_FETCH_NO_PRUNE = 2,
|
8 | }
|
9 | }
|
10 |
|
11 | export class Fetch {
|
12 | static initOptions(opts: FetchOptions, version: number): number;
|
13 | }
|