import { TimeseriesWithDimensions } from '../convert-to-timeseries.js'; /** * Single value for a dimension * @public */ export interface SingleValueData { /** The dimension identifier */ dimension: string; /** The value for the dimension */ value: string | number; /** The timeseries for the sparkline */ timeseries?: TimeseriesWithDimensions[]; }