import { GridRow } from './GridRow'; /** * Description of currently selected Rows in AdapTable */ export interface SelectedRowInfo { /** * Array of Grid Rows containing full information about a row in AdapTable */ gridRows: GridRow[]; }