mirror of
https://github.com/ckaczor/vscode-gitlens.git
synced 2026-02-12 02:58:32 -05:00
15 lines
364 B
TypeScript
15 lines
364 B
TypeScript
'use strict';
|
|
import { Range } from 'vscode';
|
|
import { IGitAuthor } from './commit';
|
|
import { GitLogCommit } from './logCommit';
|
|
|
|
export interface IGitLog {
|
|
repoPath: string;
|
|
authors: Map<string, IGitAuthor>;
|
|
commits: Map<string, GitLogCommit>;
|
|
|
|
sha: string | undefined;
|
|
maxCount: number | undefined;
|
|
range: Range;
|
|
truncated: boolean;
|
|
} |