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