UNPKG

smart-renamer

Version:

🚀 Intelligent file and code naming suggestions based on project-specific naming conventions. Interactive CLI tool with AST-based code analysis for variables, functions, components, and more.

14 lines • 444 B
import { EventEmitter } from 'events'; export declare class FileWatcher extends EventEmitter { private watcher; private watchPath; private filePatterns; constructor(watchPath?: string, filePatterns?: string[]); start(): void; stop(): void; isWatching(): boolean; private handleFileEvent; setFilePatterns(patterns: string[]): void; getWatchedPaths(): string[]; } //# sourceMappingURL=file-watcher.d.ts.map