Ver a proveniência

Removes commented out line

main
Eric Amodio há 2 anos
ascendente
cometimento
999f08d7f9
1 ficheiros alterados com 1 adições e 2 eliminações
  1. +1
    -2
      src/git/models/graph.ts

+ 1
- 2
src/git/models/graph.ts Ver ficheiro

@ -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>;
}

Carregando…
Cancelar
Guardar