UNPKG

@adaptabletools/adaptable

Version:

Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements

16 lines (15 loc) 462 B
import { AdaptableColumn } from '../Common/AdaptableColumn'; import { GridCell } from './GridCell'; /** * Describes which Cells are currently selected in AdapTable */ export interface SelectedCellInfo<TData = any> { /** * Array of Columns which have selected cells */ columns: AdaptableColumn<TData>[]; /** * Array of GridCells (which provide cell value, primary kev value and other info) */ gridCells: GridCell<TData>[]; }