UNPKG

@mui/x-data-grid-pro

Version:

The Pro plan edition of the MUI X Data Grid components.

18 lines 423 B
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[]; }