UNPKG

git-contributor-stats

Version:

CLI to compute contributor and repository statistics from a Git repository (commits, lines added/deleted, frequency, heatmap, bus-factor), with filters and multiple output formats.

19 lines 498 B
export declare function toCSV(rows: Record<string, string | number>[], headers: string[]): string; interface TopFile { filename: string; changes: number; } interface Contributor { name?: string; email?: string; commits: number; added: number; deleted: number; topFiles?: TopFile[]; } interface AnalysisData { topContributors: Contributor[]; } export declare function generateCSVReport(analysis: AnalysisData): string; export {}; //# sourceMappingURL=csv.d.ts.map