UNPKG

repo-mapper

Version:

A powerful tool to generate repository maps with summaries and statistics

15 lines (14 loc) 481 B
import { RepoStatistics, MapperOptions } from './types'; export declare class RepoMapper { private fileStructure; statistics: RepoStatistics; private options; constructor(options?: MapperOptions); scanDirectory(dirPath: string, depth?: number): Promise<void>; private shouldIgnore; private formatSize; generateStructureText(): string; private updateLargestFiles; generateSummary(text: string): string; private generateFallbackSummary; }