fix(ci): satisfy file watcher lint

This commit is contained in:
777genius 2026-05-21 17:19:30 +03:00
parent 6fd75c6704
commit 9b2a53863d

View file

@ -75,7 +75,9 @@ interface ActiveSessionFile {
type RecursiveWatcherType = 'projects' | 'todos' | 'teams' | 'tasks';
type PollingWatcherType = 'teams' | 'tasks';
type CloseableWatcher = { close: () => void | Promise<void> };
interface CloseableWatcher {
close: () => void | Promise<void>;
}
export class FileWatcher extends EventEmitter {
private projectsWatcher: fs.FSWatcher | null = null;