stupa-pdf-api/frontend/node_modules/@mui/x-data-grid/models/gridColumnSpanning.d.ts

13 lines
299 B
TypeScript

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