Added ProxyOptions

This commit is contained in:
Dolan
2017-06-09 01:07:35 +01:00
parent b47f2db564
commit edf46bc725
3 changed files with 10 additions and 0 deletions

View File

@@ -65,6 +65,7 @@ export { Oid } from './oid';
export { Openssl } from './open-ssl';
export { Packbuilder } from './pack-builder';
export { Pathspec } from './path-spec';
export { ProxyOptions } from './proxy-options';
export { PushOptions } from './push-options';
export { PushUpdate } from './push-update';
export { Push } from './push';

8
types/nodegit/proxy-options.d.ts vendored Normal file
View File

@@ -0,0 +1,8 @@
export class ProxyOptions {
certificateCheck?: Function
credentials?: Function
payload?: any
type?: number
url?: string
version?: number
}

View File

@@ -79,6 +79,7 @@
"open-ssl.d.ts",
"pack-builder.d.ts",
"path-spec.d.ts",
"proxy-options.d.ts",
"push-options.d.ts",
"push-update.d.ts",
"push.d.ts",