@mui/x-data-grid
Version:
The Community plan edition of the Data Grid components (MUI X).
9 lines • 386 B
TypeScript
import { GridColumnHeaderParams } from "./params/gridColumnHeaderParams.js";
/**
* A function used to process headerClassName params.
*/
export type GridColumnHeaderClassFn = (params: GridColumnHeaderParams) => string;
/**
* The union type representing the [[GridColDef]] column header class type.
*/
export type GridColumnHeaderClassNamePropType = string | GridColumnHeaderClassFn;