// Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. 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; }