PluginConfig type
Base type for any grid plugin config.
Tip
This API reference is automatically generated from the source code of the @jsoc/grid-core package.
View Declaration
export interface PluginConfig<TColumn = unknown> {
/**
* Internal property used to store the column definition type of the grid plugin.
* This is solely for type inference and not a valid property of the plugin config.
*/
__columnType?: TColumn;
}Fields
| Name | Type | Default |
|---|---|---|
__columnType | TColumnInternal property used to store the column definition type of the grid plugin. This is solely for type inference and not a valid property of the plugin config. |