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