Files
vscode-gitlens/src/git/models/log.ts
Eric Amodio 8b5eed4714 Fixes issues with next commit navigation (renames)
Adds sha to log model to know if it is a full log or not
2017-03-25 00:44:10 -04:00

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