Type alias UFModelChangedCallback

UFModelChangedCallback: ((sender, properties) => void)

The function template that is called whenever one or more properties have changed value.

Type declaration

    • (sender, properties): void
    • Parameters

      • sender: UFModel

        Sender of 'event', the model instance with one or more changed properties.

      • properties: string[]

        The names of properties that changed.

      Returns void