DefinitelyTyped/types/nodegit/indexer.d.ts
2017-06-07 02:14:52 +01:00

9 lines
191 B
TypeScript

import { TransferProgress } from './transfer-progress';
import { Oid } from './oid';
export class Indexer {
commit(stats: TransferProgress): number;
free(): void;
hash(): Oid;
}