Skip to content

ViewModel.notifyPropertiesChanged

github-actions[bot] edited this page Dec 3, 2024 · 3 revisions
API / ViewModel / notifyPropertiesChanged method

Notifies all observers that the provided properties may have changed.

protected notifyPropertiesChanged(
  changedProperty: keyof this,
  ...otherChangedProperties: readonly (keyof this)[]
): void

Source reference: src/viewModels/ViewModel.ts:29.

Parameters

  • changedProperty: keyof this
    The name of the property that may have changed.

  • otherChangedProperties (rest): readonly (keyof this)[]
    The name of other properties that may have changed.

Clone this wiki locally