From 999f08d7f9dfb2415d1049377b50fa62dae05e77 Mon Sep 17 00:00:00 2001 From: Eric Amodio Date: Wed, 21 Sep 2022 01:14:36 -0400 Subject: [PATCH] Removes commented out line --- src/git/models/graph.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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; }