@adaptabletools/adaptable
Version:
Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
12 lines (11 loc) • 382 B
TypeScript
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;
}