Type alias UFPropertyChangedCallback

UFPropertyChangedCallback: ((sender, property) => void)

The function template that is called whenever a certain property has changed value.

Type declaration

    • (sender, property): void
    • Parameters

      • sender: UFModel

        Sender of 'event', the model instance with the changed property.

      • property: string

        The name of the property that has changed.

      Returns void