fix: ensure charging station uid is stable between firmware update
[e-mobility-charging-stations-simulator.git] / src / types / ocpp / MeterValues.ts
index 2172ec1f925762826eba130ef579abcc7587230a..10b8323df4fefac9eab9bf9719657562ccfe1389 100644 (file)
@@ -1,21 +1,19 @@
 import {
-  OCPP16MeterValue,
+  type OCPP16MeterValue,
   OCPP16MeterValueMeasurand,
   OCPP16MeterValuePhase,
-  OCPP16SampledValue,
-} from './1.6/MeterValues';
-
-export type MeterValueMeasurand = OCPP16MeterValueMeasurand;
+  type OCPP16SampledValue,
+} from '../internal';
 
 export const MeterValueMeasurand = {
   ...OCPP16MeterValueMeasurand,
-};
-
-export type MeterValuePhase = OCPP16MeterValuePhase;
+} as const;
+export type MeterValueMeasurand = OCPP16MeterValueMeasurand;
 
 export const MeterValuePhase = {
   ...OCPP16MeterValuePhase,
-};
+} as const;
+export type MeterValuePhase = OCPP16MeterValuePhase;
 
 export type SampledValue = OCPP16SampledValue;