Object representing changes in a property.

interface ChangesObject {
    currentValue: any;
    isFirstChange: (() => boolean);
    previousValue: any;
}

Properties

currentValue: any

Current value of the property.

isFirstChange: (() => boolean)

Function to check if it's the first change of the property.

previousValue: any

Previous value of the property.