Added proxy

This commit is contained in:
Dolan 2017-06-10 02:36:24 +01:00
parent e9fbe7110a
commit a38a576c6e
3 changed files with 7 additions and 0 deletions

View File

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

5
types/nodegit/proxy.d.ts vendored Normal file
View File

@ -0,0 +1,5 @@
import { ProxyOptions } from './proxy-options';
export class Proxy {
static initOptions(opts: ProxyOptions, version: number): number;
}

View File

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