UNPKG

@zubenelakrab/gitstats

Version:

Powerful Git repository analyzer with comprehensive statistics and insights

20 lines 654 B
export * from './types/index.js'; export * from './core/index.js'; export * from './parsers/index.js'; export * from './analyzers/index.js'; export * from './outputs/index.js'; export * from './utils/index.js'; import type { AnalysisConfig, OutputConfig, AnalysisReport } from './types/index.js'; /** * Analyze a repository and render output */ export declare function gitstats(repoPath: string, options?: { config?: Partial<AnalysisConfig>; output?: Partial<OutputConfig>; onProgress?: (phase: string) => void; }): Promise<{ report: AnalysisReport; rendered: string; }>; export default gitstats; //# sourceMappingURL=index.d.ts.map