X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Ftypes%2Focpp%2FChargingProfile.ts;h=d2c36d7d8903e7c9634bb2ecb03e1c536fdab7c6;hb=8eb3b688c4b6fb3e946f38d474a5125caf1d056a;hp=6dab7cff1284465a8fc07bc1fac9472015cb31ce;hpb=c0560973d259dbce64a24d10bab46246596fa1d5;p=e-mobility-charging-stations-simulator.git diff --git a/src/types/ocpp/ChargingProfile.ts b/src/types/ocpp/ChargingProfile.ts index 6dab7cff..d2c36d7d 100644 --- a/src/types/ocpp/ChargingProfile.ts +++ b/src/types/ocpp/ChargingProfile.ts @@ -1,3 +1,15 @@ -import { OCPP16ChargingProfile } from './1.6/ChargingProfile'; +import { + OCPP16ChargingProfile, + OCPP16ChargingRateUnitType, + OCPP16ChargingSchedulePeriod, +} from './1.6/ChargingProfile'; export type ChargingProfile = OCPP16ChargingProfile; + +export type ChargingSchedulePeriod = OCPP16ChargingSchedulePeriod; + +export type ChargingRateUnitType = OCPP16ChargingRateUnitType; + +export const ChargingRateUnitType = { + ...OCPP16ChargingRateUnitType, +};