UNPKG

@mui/x-data-grid

Version:

The Community plan edition of the Data Grid components (MUI X).

19 lines (18 loc) 408 B
import type { GridColDef } from '../colDef/gridColDef'; /** * Object passed as parameter of the column order change event. */ export interface GridColumnOrderChangeParams { /** * The column of the current header component. */ column: GridColDef; /** * The target column index. */ targetIndex: number; /** * The old column index. */ oldIndex: number; }