@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) • 358 B
TypeScript
import { BaseContext } from '../../types';
import { RowDataChangedInfo } from '../../AdaptableState/Common/RowDataChangedInfo';
/**
* EventInfo returned by the RowChanged event
*/
export interface RowChangedInfo extends BaseContext {
/**
* Object providing full information of the Row that changed
*/
rowDataChange: RowDataChangedInfo;
}