@types/nodegit
Version:
TypeScript definitions for nodegit
14 lines (12 loc) • 356 B
TypeScript
import { RemoteCallbacks } from './remote-callbacks';
import { Strarray } from './str-array';
export interface FetchOptions {
version?: number;
callbacks?: RemoteCallbacks;
prune?: number;
updateFetchhead?: number;
downloadTags?: number;
customHeaders?: Strarray | string | string[];
proxyOpts?: any;
[key: string]: any;
}