@highcharts/dashboards
Version:
Highcharts Dashboards framework
49 lines (41 loc) • 870 B
TypeScript
/* *
*
* Cell Renderer Type
*
* (c) 2020-2025 Highsoft AS
*
* License: www.highcharts.com/license
*
* !!!!!!! SOURCE GETS TRANSPILED BY TYPESCRIPT. EDIT TS FILE ONLY. !!!!!!!
*
* Authors:
* - Dawid Dragula
*
* */
/* *
*
* Declarations
*
* */
/**
* Contains all possible class types of the cell renderer registry.
*/
export type CellRendererClassType =
CellRendererTypeRegistry[keyof CellRendererTypeRegistry];
/**
* Contains all possible types of the class registry.
*/
export type CellRendererType = CellRendererClassType['prototype'];
/**
* Describes the class registry as a record object with class name and their
* class types (aka class constructor).
*/
export interface CellRendererTypeRegistry {
// Extend this interface with the declare module pattern.
}
/* *
*
* Export
*
* */
export default CellRendererType;