rx-datatable API
    Preparing search index...

    Interface Watchable

    Interface implemented by collections that can notify components of their mutations. The list components subscribe (via useWatched) to any prop collection that has a subscribe method, so they re-render when it changes.

    interface Watchable {
        subscribe(onChange: () => void): () => void;
    }

    Implemented by

    Index
    • Registers a mutation listener and returns a function that unregisters it.

      Parameters

      • onChange: () => void

      Returns () => void