UNPKG

@mui/x-data-grid-pro

Version:

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

18 lines 333 B
import { GridRowModel } from '@mui/x-data-grid'; /** * Object passed as parameter of the row order change event. */ export interface GridRowOrderChangeParams { /** * The row data. */ row: GridRowModel; /** * The target row index. */ targetIndex: number; /** * The old row index. */ oldIndex: number; }