UNPKG

@mui/x-data-grid

Version:

The Community plan edition of the Data Grid components (MUI X).

12 lines 278 B
export type GridColumnIndex = number; export type GridCellColSpanInfo = { spannedByColSpan: true; rightVisibleCellIndex: GridColumnIndex; leftVisibleCellIndex: GridColumnIndex; } | { spannedByColSpan: false; cellProps: { colSpan: number; width: number; }; };