1 | import { RemoteCallbacks } from "./remote-callbacks";
|
2 | import { Strarray } from "./str-array";
|
3 |
|
4 | export class FetchOptions {
|
5 | version?: number | undefined;
|
6 | callbacks?: RemoteCallbacks | undefined;
|
7 | prune?: number | undefined;
|
8 | updateFetchhead?: number | undefined;
|
9 | downloadTags?: number | undefined;
|
10 | customHeaders?: Strarray | string | string[] | undefined;
|
11 | proxyOpts?: any;
|
12 | [key: string]: any;
|
13 | }
|