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) 366 B
import { SelectedCellInfo } from '../../AdaptableState/Selection/SelectedCellInfo'; import { BaseContext } from '../../types'; /** * Event Info published by CellSelectionChanged event */ export interface CellSelectionChangedInfo extends BaseContext { /** * Details of Cells currently selected in the Grid */ selectedCellInfo: SelectedCellInfo; }