import type { GridValidRowModel } from "./gridRows.js"; import type { GridCellParams } from "./params/gridCellParams.js"; /** * A function used to process cellClassName params. * @param {GridCellParams} params The parameters of the cell. * @returns {string} The class name to be added to the cell. */ export type GridCellClassFn = (params: GridCellParams) => string; /** * The union type representing the [[GridColDef]] cell class type. */ export type GridCellClassNamePropType = string | GridCellClassFn;