x4js - v2.2.49
    Preparing search index...

    Type Alias StateProxy<T>

    StateProxy: T & Pick<StateManager<T>, "on" | "off" | "once" | "watch">

    type of the proxified state: the data itself + the manager's event API. Pick<> avoids re-declaring the signatures — if on/off/once evolve in StateManager, this type follows automatically.

    Type Parameters