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; }