UNPKG

@adaptabletools/adaptable

Version:

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

11 lines (10 loc) 277 B
import { GridRow } from './GridRow'; /** * Description of currently selected Rows in AdapTable */ export interface SelectedRowInfo<TData = any> { /** * Array of Grid Rows containing full information about a row in AdapTable */ gridRows: GridRow<TData>[]; }