mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-23 12:56:46 +08:00
Added more documentation
This commit is contained in:
22
types/nodegit/ref-db.d.ts
vendored
22
types/nodegit/ref-db.d.ts
vendored
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user