prorm API Reference
    Preparing search index...

    Interface EtcdWatchHandle

    A handle returned by watch()/watchPrefix(). Call cancel() to stop watching.

    interface EtcdWatchHandle {
        watcher: Watcher;
        cancel(): Promise<void>;
    }
    Index
    watcher: Watcher

    The underlying etcd3 Watcher, for anything not wrapped here (e.g. disconnected/error events).