ColumnGeneratorByType type
Mapper that contains ColumnGenerators for all ColumnDataTypes supported by the Grid UI Component.
Used by generateColumns to turn the ColumnDataTypeMap into column definitions.
Tip
This API reference is automatically generated from the source code of the @jsoc/grid-core package.
View Declaration
export type ColumnGeneratorByType<C extends PluginConfig> = {
[D in ColumnDataType]: ColumnGenerator<C, D>;
};