UNPKG

@mui/x-data-grid

Version:

The community edition of the data grid component (MUI X).

17 lines (16 loc) 448 B
import { GridRowId } from '../../../models/gridRows'; export declare type GridCellIdentifier = { id: GridRowId; field: string; }; export declare type GridColumnIdentifier = { field: string; }; export interface GridFocusState { cell: GridCellIdentifier | null; columnHeader: GridColumnIdentifier | null; } export interface GridTabIndexState { cell: GridCellIdentifier | null; columnHeader: GridColumnIdentifier | null; }