export interface IChangedArgs { /** * The name of the changed attribute. */ name: string; /** * The old value of the changed attribute. */ oldValue: T; /** * The new value of the changed attribute. */ newValue: T; }