DefinitelyTyped/types/nodegit/push-options.d.ts

13 lines
363 B
TypeScript

import { RemoteCallbacks } from './remote-callbacks';
import { Strarray } from './str-array';
import { ProxyOptions } from './proxy-options';
export interface PushOptions {
version?: number;
pbParallelism?: number;
callbacks?: RemoteCallbacks;
customHeaders?: Strarray | string | string[];
proxyOpts?: ProxyOptions;
[key: string]: any;
}