add new style and global search
This commit is contained in:
@@ -71,6 +71,20 @@ export interface GitCommitComparison {
|
||||
patch: string;
|
||||
}
|
||||
|
||||
export interface GitSearchHit {
|
||||
commit_hash: string;
|
||||
short_hash: string;
|
||||
summary: string;
|
||||
author_name: string;
|
||||
author_email: string;
|
||||
date: string;
|
||||
file: string;
|
||||
old_file: string | null;
|
||||
line_number: number | null;
|
||||
line: string;
|
||||
matches_added: number;
|
||||
}
|
||||
|
||||
export type ExplorerNodeKind = "folder" | "file";
|
||||
|
||||
export interface ExplorerNode {
|
||||
|
||||
Reference in New Issue
Block a user