@mui/x-data-grid
Version:
The Community plan edition of the Data Grid components (MUI X).
10 lines (9 loc) • 384 B
TypeScript
import { GridColumnHeaderParams } from './params/gridColumnHeaderParams';
/**
* 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;