UNPKG

@mui/x-data-grid

Version:

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

15 lines 495 B
import type { GridStateColDef } from "../colDef/gridColDef.js"; import { GridValidRowModel } from "../gridRows.js"; /** * Object passed as parameter in the column [[GridColDef]] header renderer. */ export interface GridColumnHeaderParams<R extends GridValidRowModel = GridValidRowModel, V = any, F = V> { /** * The column field of the column that triggered the event */ field: string; /** * The column of the current header component. */ colDef: GridStateColDef<R, V, F>; }