X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Ftypes%2FMeasurandPerPhaseSampledValueTemplates.ts;h=2922db4d791d8c0c8c358cd1d0b03feb1147f9ef;hb=d929adcc32a8cc79f0c7182d16f70367b001d28c;hp=8f69e41cdf847167462360a4c9e09d3799544314;hpb=860ef183ca94c501749d508ea70d7447ecd90f05;p=e-mobility-charging-stations-simulator.git diff --git a/src/types/MeasurandPerPhaseSampledValueTemplates.ts b/src/types/MeasurandPerPhaseSampledValueTemplates.ts index 8f69e41c..2922db4d 100644 --- a/src/types/MeasurandPerPhaseSampledValueTemplates.ts +++ b/src/types/MeasurandPerPhaseSampledValueTemplates.ts @@ -1,12 +1,12 @@ -import type { SampledValue } from './internal'; +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; -}; +}