@mui/x-data-grid-pro
Version:
The Pro plan edition of the Data Grid components (MUI X).
19 lines (18 loc) • 358 B
TypeScript
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;
}