import { HistoryCurveDisplayPeriodEnum } from './history-curve-display-period-enum'; import { HistoryCurveRefreshCycleEnum } from './history-curve-refresh-cycle-enum'; import { CurveType } from './curve-type'; export interface HistoryCurveGeneralData { curveType: CurveType; refreshCycle: HistoryCurveRefreshCycleEnum; displayPeriod: HistoryCurveDisplayPeriodEnum; }