interface IValueDidChange<T> {
    newValue: T;
    object: any;
    oldValue: undefined | T;
    type: "update";
}

Type Parameters

  • T

Hierarchy (view full)

Properties

newValue: T
object: any
oldValue: undefined | T
type