Skip to content

IPropertiesChangedEventHandler

github-actions[bot] edited this page Dec 3, 2024 · 3 revisions
API / IPropertiesChangedEventHandler<T> interface

A specialized interface for handling properties changed events.

Extends IEventHandler<T, readonly (keyof T)[]>.

interface IPropertiesChangedEventHandler<T>
    extends IEventHandler<T, readonly (keyof T)[]>

Source reference: src/viewModels/IPropertiesChangedEventHandler.ts:7.

Generic Parameters

  • T - The type whose properties may change.

Methods

  • handle - The method that handles the event.
Clone this wiki locally