stupa-pdf-api/frontend/node_modules/@mui/x-data-grid/hooks/features/rows/gridRowsMetaState.d.ts

14 lines
282 B
TypeScript

/**
* 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[];
}