UNPKG

@highcharts/dashboards

Version:
41 lines (40 loc) 607 B
/* * * * Cell Content abstract class * * (c) 2020-2025 Highsoft AS * * License: www.highcharts.com/license * * !!!!!!! SOURCE GETS TRANSPILED BY TYPESCRIPT. EDIT TS FILE ONLY. !!!!!!! * * Authors: * - Dawid Dragula * * */ 'use strict'; /* * * * Class * * */ /** * Represents a cell content in the grid. */ class CellContent { /** * Creates and renders the cell content. * * @param cell * The cell to which the content belongs. */ constructor(cell) { this.cell = cell; } } /* * * * Default Export * * */ export default CellContent;