UNPKG

@mui/x-data-grid

Version:

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

20 lines (19 loc) 472 B
import type { GridStateColDef } from '../colDef/gridColDef'; /** * Object passed as parameter of the column resize event. * TODO: Move to `x-data-grid-pro` folder */ export interface GridColumnResizeParams { /** * The HTMLElement column header element. */ element?: HTMLElement | null; /** * The column of the current header component. */ colDef: GridStateColDef; /** * The width of the column. */ width: number; }