hosanna-ui-docs - v0.9.0
    Preparing search index...

    Interface IObserverOptions

    Options for configuring observer behavior.

    interface IObserverOptions {
        immediate?: boolean;
        once?: boolean;
        sendMode?: ObserverSendMode;
    }
    Index

    Properties

    immediate?: boolean

    If true, invoke the callback immediately with the current value.

    once?: boolean

    If true, invoke the callback only once and then remove the observer.

    sendMode?: ObserverSendMode

    Specifies what data to send to the callback.