diff --git a/src/git/models/graph.ts b/src/git/models/graph.ts index bf57725..33e888d 100644 --- a/src/git/models/graph.ts +++ b/src/git/models/graph.ts @@ -32,9 +32,8 @@ export interface GitGraph { readonly paging?: { readonly limit: number | undefined; readonly startingCursor: string | undefined; - // readonly endingCursor: string | undefined; readonly more: boolean; }; - more?(limit: number | { until?: string } | undefined): Promise; + more?(limit: number, sha?: string): Promise; }