Fix UT
[e-mobility-charging-stations-simulator.git] / src / types / ocpp / ChargingProfile.ts
index d2c36d7d8903e7c9634bb2ecb03e1c536fdab7c6..837102728a81163abd1e7d3684f97c40ed04c1ec 100644 (file)
@@ -1,15 +1,14 @@
 import {
-  OCPP16ChargingProfile,
+  type OCPP16ChargingProfile,
   OCPP16ChargingRateUnitType,
-  OCPP16ChargingSchedulePeriod,
+  type OCPP16ChargingSchedulePeriod,
 } from './1.6/ChargingProfile';
 
 export type ChargingProfile = OCPP16ChargingProfile;
 
 export type ChargingSchedulePeriod = OCPP16ChargingSchedulePeriod;
 
-export type ChargingRateUnitType = OCPP16ChargingRateUnitType;
-
 export const ChargingRateUnitType = {
   ...OCPP16ChargingRateUnitType,
-};
+} as const;
+export type ChargingRateUnitType = OCPP16ChargingRateUnitType;