UNPKG

@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) 359 B
import { SelectedRowInfo } from '../../AdaptableState/Selection/SelectedRowInfo'; import { BaseContext } from '../../types'; /** * Event Info published by RowSelectionChanged event */ export interface RowSelectionChangedInfo extends BaseContext { /** * Details of Rows currently selected in the Grid */ selectedRowInfo: SelectedRowInfo; }