type FlexRenderContent<TProps> =
| string
| number
| Type<TProps>
| FlexRenderComponent<TProps>
| TemplateRef<{
$implicit: TProps;
}>
| null
| Record<any, any>
| undefined;type FlexRenderContent<TProps> =
| string
| number
| Type<TProps>
| FlexRenderComponent<TProps>
| TemplateRef<{
$implicit: TProps;
}>
| null
| Record<any, any>
| undefined;Defined in: flex-render/renderer.ts:44
Content supported by the flexRender directive when declaring a table column header/cell.
TProps extends NonNullable<unknown>