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-db.d.ts vendored Normal file
View File

@@ -0,0 +1,8 @@
import { Repository } from './repository';
export class Refdb {
static open(repo: Repository): Promise<Refdb>;
compress(): number;
free(): void;
}