@kkdev92/vscode-ext-kit - v4.1.1
    Preparing search index...

    Interface FileWatcherHandle

    One native watcher subscription. Event registrations and the watcher itself are synchronous disposables owned by the managed watcher that creates them.

    interface FileWatcherHandle {
        dispose(): void;
        onDidChange(listener: (uri: WatchedUri) => void): PlatformRegistration;
        onDidCreate(listener: (uri: WatchedUri) => void): PlatformRegistration;
        onDidDelete(listener: (uri: WatchedUri) => void): PlatformRegistration;
    }
    Index