X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Ftypes%2FMeasurandPerPhaseSampledValueTemplates.ts;h=2922db4d791d8c0c8c358cd1d0b03feb1147f9ef;hb=b8efd65b4afd9229385af677e3e2a829f3280712;hp=2a534b4a5687996b59ebfeb4798849ff61fa2941;hpb=17e9e8cef1f7d1cbc4ec6aa4c95d8f3d93c593a6;p=e-mobility-charging-stations-simulator.git diff --git a/src/types/MeasurandPerPhaseSampledValueTemplates.ts b/src/types/MeasurandPerPhaseSampledValueTemplates.ts index 2a534b4a..2922db4d 100644 --- a/src/types/MeasurandPerPhaseSampledValueTemplates.ts +++ b/src/types/MeasurandPerPhaseSampledValueTemplates.ts @@ -2,10 +2,11 @@ import type { SampledValue } from './ocpp/MeterValues'; export type SampledValueTemplate = SampledValue & { fluctuationPercent?: number; + minimumValue?: number; }; -export type MeasurandPerPhaseSampledValueTemplates = { +export interface MeasurandPerPhaseSampledValueTemplates { L1?: SampledValueTemplate; L2?: SampledValueTemplate; L3?: SampledValueTemplate; -}; +}