UNPKG

@mui/x-data-grid

Version:

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

18 lines 386 B
import type { GridColDef } from "../colDef/gridColDef.js"; /** * 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; }