Added more documentation

This commit is contained in:
Dolan
2017-06-09 02:11:48 +01:00
parent 93a3dc1f47
commit 3fe8ca1a01
14 changed files with 1873 additions and 19 deletions

View File

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