mira-consciousness
Version:
Memory & Intelligence Retention Archive - Preserving The Spark
17 lines • 531 B
TypeScript
/**
* File System Performance Analyzer
* Checks for file system related performance issues
*/
import { PerformanceIssue } from './types.js';
export declare class FileSystemAnalyzer {
private projectRoot;
constructor(projectRoot: string);
analyze(): Promise<PerformanceIssue[]>;
private checkPackageJsonSize;
private checkNodeModulesSize;
private checkFileCount;
private checkLargeFiles;
private checkSyncOperations;
private getDirectorySize;
}
//# sourceMappingURL=FileSystemAnalyzer.d.ts.map