chore: switch coding style to JS standard
[e-mobility-charging-stations-simulator.git] / src / types / ocpp / ChargingProfile.ts
index 6033ad954f6acd550abe0e2669c9d93a1e32b42e..efc25b90083ad54a28aa977ee587e63851d643f0 100644 (file)
@@ -3,24 +3,27 @@ import {
   OCPP16ChargingProfileKindType,
   OCPP16ChargingRateUnitType,
   type OCPP16ChargingSchedulePeriod,
-  OCPP16RecurrencyKindType,
-} from './1.6/ChargingProfile.js';
+  OCPP16RecurrencyKindType
+} from './1.6/ChargingProfile.js'
 
-export type ChargingProfile = OCPP16ChargingProfile;
+export type ChargingProfile = OCPP16ChargingProfile
 
-export type ChargingSchedulePeriod = OCPP16ChargingSchedulePeriod;
+export type ChargingSchedulePeriod = OCPP16ChargingSchedulePeriod
 
 export const ChargingProfileKindType = {
-  ...OCPP16ChargingProfileKindType,
-} as const;
-export type ChargingProfileKindType = OCPP16ChargingProfileKindType;
+  ...OCPP16ChargingProfileKindType
+} as const
+// eslint-disable-next-line @typescript-eslint/no-redeclare
+export type ChargingProfileKindType = OCPP16ChargingProfileKindType
 
 export const RecurrencyKindType = {
-  ...OCPP16RecurrencyKindType,
-} as const;
-export type RecurrencyKindType = OCPP16RecurrencyKindType;
+  ...OCPP16RecurrencyKindType
+} as const
+// eslint-disable-next-line @typescript-eslint/no-redeclare
+export type RecurrencyKindType = OCPP16RecurrencyKindType
 
 export const ChargingRateUnitType = {
-  ...OCPP16ChargingRateUnitType,
-} as const;
-export type ChargingRateUnitType = OCPP16ChargingRateUnitType;
+  ...OCPP16ChargingRateUnitType
+} as const
+// eslint-disable-next-line @typescript-eslint/no-redeclare
+export type ChargingRateUnitType = OCPP16ChargingRateUnitType