UNPKG

@mui/x-data-grid

Version:

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

18 lines 408 B
import type { GridStateColDef } from "../colDef/gridColDef.js"; /** * Object passed as parameter of the column resize event. */ 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; }