DefinitelyTyped/types/nodegit/proxy-options.d.ts
2017-11-05 19:46:36 +02:00

10 lines
193 B
TypeScript

export class ProxyOptions {
certificateCheck?: Function;
credentials?: Function;
payload?: any;
type?: number;
url?: string;
version?: number;
[key: string]: any;
}