mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
8 lines
270 B
TypeScript
8 lines
270 B
TypeScript
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>;
|
|
}
|