import { CellDataChangedInfo } from '../../AdaptableState/Common/CellDataChangedInfo'; import { BaseContext } from '../../types'; /** * EventInfo returned by CellChanged event */ export interface CellChangedInfo extends BaseContext { /** * Object providing full information of the cell (and column and row) that changed */ cellDataChange: CellDataChangedInfo; }