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.
10 lines • 467 B
TypeScript
interface ChartOptions {
width?: number;
height?: number;
verbose?: boolean;
limit?: number;
}
export declare function renderBarChartImage(format: string, title: string, labels: string[], values: number[], filePath: string, options?: ChartOptions): Promise<void>;
export declare function renderHeatmapImage(format: string, heatmap: number[][], filePath: string, options?: ChartOptions): Promise<void>;
export {};
//# sourceMappingURL=renderer.d.ts.map