UNPKG

mira-consciousness

Version:

Memory & Intelligence Retention Archive - Preserving The Spark

14 lines 436 B
/** * Memory Leak Detector * Identifies potential memory leak patterns in code */ import { PerformanceIssue } from './types.js'; export declare class MemoryLeakDetector { private projectRoot; constructor(projectRoot: string); analyze(): Promise<PerformanceIssue[]>; private checkMemoryLeakPatterns; private checkAsyncPatterns; private checkForMissingCleanup; } //# sourceMappingURL=MemoryLeakDetector.d.ts.map