UNPKG

@mui/x-data-grid

Version:

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

14 lines (13 loc) 282 B
/** * The grid rows total height and row positions. */ export interface GridRowsMetaState { /** * The sum of all visible grid rows in the current rows. */ currentPageTotalHeight: number; /** * The grid rows positions. */ positions: number[]; }