chore: switch coding style to JS standard
[e-mobility-charging-stations-simulator.git] / src / types / ocpp / ChargingProfile.ts
1 import {
2 type OCPP16ChargingProfile,
3 OCPP16ChargingProfileKindType,
4 OCPP16ChargingRateUnitType,
5 type OCPP16ChargingSchedulePeriod,
6 OCPP16RecurrencyKindType
7 } from './1.6/ChargingProfile.js'
8
9 export type ChargingProfile = OCPP16ChargingProfile
10
11 export type ChargingSchedulePeriod = OCPP16ChargingSchedulePeriod
12
13 export const ChargingProfileKindType = {
14 ...OCPP16ChargingProfileKindType
15 } as const
16 // eslint-disable-next-line @typescript-eslint/no-redeclare
17 export type ChargingProfileKindType = OCPP16ChargingProfileKindType
18
19 export const RecurrencyKindType = {
20 ...OCPP16RecurrencyKindType
21 } as const
22 // eslint-disable-next-line @typescript-eslint/no-redeclare
23 export type RecurrencyKindType = OCPP16RecurrencyKindType
24
25 export const ChargingRateUnitType = {
26 ...OCPP16ChargingRateUnitType
27 } as const
28 // eslint-disable-next-line @typescript-eslint/no-redeclare
29 export type ChargingRateUnitType = OCPP16ChargingRateUnitType