UNPKG

@mui/x-data-grid

Version:

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

13 lines (12 loc) 299 B
export type GridColumnIndex = number; export type GridCellColSpanInfo = { spannedByColSpan: true; rightVisibleCellIndex: GridColumnIndex; leftVisibleCellIndex: GridColumnIndex; } | { spannedByColSpan: false; cellProps: { colSpan: number; width: number; }; };