mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-08-16 23:10:29 +00:00
Added Graph
This commit is contained in:
Vendored
+7
@@ -0,0 +1,7 @@
|
||||
import { Repository } from './repository';
|
||||
import { Oid } from './oid';
|
||||
|
||||
export class Graph {
|
||||
static aheadBehind(repo: Repository, local: Oid, upstream: Oid): Promise<number>;
|
||||
static descendantOf(repo: Repository, commit: Oid, ancestor: Oid): Promise<number>;
|
||||
}
|
||||
Vendored
+1
@@ -20,6 +20,7 @@ export { FetchOptions } from './fetch-options';
|
||||
export { Fetch } from './fetch';
|
||||
export { Filter } from './filter';
|
||||
export { Giterr } from './git-err';
|
||||
export { Graph } from './graph';
|
||||
export { Hashsig } from './hash-sig';
|
||||
export { Index } from './index_';
|
||||
export { IndexEntry } from './index-entry';
|
||||
|
||||
@@ -33,6 +33,7 @@
|
||||
"fetch.d.ts",
|
||||
"filter.d.ts",
|
||||
"git-err.d.ts",
|
||||
"graph.d.ts",
|
||||
"hash-sig.d.ts",
|
||||
"ignore.d.ts",
|
||||
"index-entry.d.ts",
|
||||
|
||||
Reference in New Issue
Block a user