Added more files

This commit is contained in:
Dolan
2017-06-04 02:39:34 +01:00
parent cdf69c51e9
commit dd5dc38dec
19 changed files with 218 additions and 26 deletions

8
types/nodegit/ref-spec.d.ts vendored Normal file
View File

@@ -0,0 +1,8 @@
export class Refspec {
direction(): number;
dst(): string;
dstMatches(refname: string): number;
force(): number;
src(): string;
srcMatches(refname: string): number;
}