import { TimeData } from "./time-data"; export interface IndicatorTrend { /** * Time data to display in chart */ chartData: TimeData[][]; /** * "Best Room" value */ best: number; /** * "Worst Room" value */ worst: number; /** * Type of indicator trend */ label: string; }