reaper-osc
    Preparing search index...

    Interface INotifyPropertyChanged

    Allows a subscriber to be notified of changes to the object's properties

    interface INotifyPropertyChanged {
        onPropertyChanged(property: string, callback: () => void): () => void;
    }

    Implemented by

    Index

    Methods

    • An event that can be subscribed to for property change notifications

      Parameters

      • property: string

        The name of the property to subscribe to

      • callback: () => void

        A callback to be called when the state of the specified property changes

      Returns () => void

      A function that unsubscribes the event handler