@mui/x-data-grid-pro
Version:
The Pro plan edition of the Data Grid components (MUI X).
19 lines (18 loc) • 448 B
TypeScript
import { GridColDef } from '@mui/x-data-grid';
/**
* Object passed as parameter in the onRowsScrollEnd callback.
*/
export interface GridRowScrollEndParams {
/**
* The number of rows that fit in the viewport.
*/
viewportPageSize: number;
/**
* The number of rows allocated for the rendered zone.
*/
visibleRowsCount: number;
/**
* The grid visible columns.
*/
visibleColumns: GridColDef[];
}