An arguments object for the changed signals.

interface IChangedArgs<T> {
    newValue: null | T;
    oldValue: null | T;
}

Type Parameters

Properties

Properties

newValue: null | T

The new value for the widget.

oldValue: null | T

The old value for the widget.