Added Push

This commit is contained in:
Dolan
2017-06-07 00:43:37 +01:00
parent 09e7e41519
commit 5c1cf0697d
3 changed files with 8 additions and 0 deletions

View File

@@ -27,6 +27,7 @@ export { Odb } from './odb';
export { Oidarray } from './oid-array';
export { Oid } from './oid';
export { PushOptions } from './push-options';
export { Push } from './push';
export { RebaseOperation } from './rebase-operation';
export { Rebase, RebaseOptions } from './rebase';
export { Refdb } from './ref-db';

6
types/nodegit/push.d.ts vendored Normal file
View File

@@ -0,0 +1,6 @@
import { RemoteCallbacks } from './remote-callbacks';
import { PushOptions } from './push-options';
export class Push {
static initOptions(opts: PushOptions, version: number): number;
}

View File

@@ -41,6 +41,7 @@
"oid-array.d.ts",
"oid.d.ts",
"push-options.d.ts",
"push.d.ts",
"rebase-operation.d.ts",
"rebase.d.ts",
"ref-db.d.ts",