瀏覽代碼

Removes commented out line

main
Eric Amodio 2 年之前
父節點
當前提交
999f08d7f9
共有 1 個文件被更改,包括 1 次插入2 次删除
  1. +1
    -2
      src/git/models/graph.ts

+ 1
- 2
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<GitGraph | undefined>;
more?(limit: number, sha?: string): Promise<GitGraph | undefined>;
}

Loading…
取消
儲存