/** * Extends the tanstack table's state for the MeterBar chart. * @internal */ export interface DataTableMeterbarChartState { /** * Object to store the highest total max values for all meterbar columns */ meterbarChartMaxValues: Record | null; } /** * @internal Plugin constructor interface */ export interface MeterBarChartColumnTypeFeatureConstructors { TableState: DataTableMeterbarChartState; }