refactor: remove unneeded intermediate variable in id tags cache code
[e-mobility-charging-stations-simulator.git] / src / types / MeasurandPerPhaseSampledValueTemplates.ts
index 34ead1a574a9df526b238794753e4a72f96ca51b..8753cbde0c7bb680caf9121fe9752bc8fc618aec 100644 (file)
@@ -1,8 +1,8 @@
-import type { SampledValue } from './ocpp/MeterValues';
+import type { SampledValue } from './internal';
 
-export interface SampledValueTemplate extends SampledValue {
+export type SampledValueTemplate = SampledValue & {
   fluctuationPercent?: number;
-}
+};
 
 export type MeasurandPerPhaseSampledValueTemplates = {
   L1?: SampledValueTemplate;