export interface CommitInfo { hash: string; shortHash: string; author: string; email: string; date: string; subject: string; body: string; } export interface ProjectInfo { project: string; commits: Array; commitsLength: number; analyzeDir: string; git: string; } export interface AnalyzeItem { root: string; simpleRoot: string; project: string; git: string; analyzeDir?: string; needAnalyzeSubDir?: string[]; }