type ColumnDefTemplate<TProps> = string | (props) => any;type ColumnDefTemplate<TProps> = string | (props) => any;Defined in: types/ColumnDef.ts:47
A renderable column template value.
Strings render directly; functions receive the relevant cell/header context and can return framework-specific render output.
TProps extends object