UNPKG

arela

Version:

AI-powered CTO with multi-agent orchestration, code summarization, visual testing (web + mobile) for blazing fast development.

20 lines 546 B
export interface AutoUpdateOptions { projectPath: string; ignored?: string[]; debounceMs?: number; } export declare class MemoryAutoUpdater { private watcher; private updateQueue; private debounceTimer; private isProcessing; start(options: AutoUpdateOptions): void; stop(): void; isRunning(): boolean; private scheduleUpdate; private processQueue; private updateFile; private removeFile; } export declare const memoryAutoUpdater: MemoryAutoUpdater; //# sourceMappingURL=auto-update.d.ts.map