From: Jérôme Benoit Date: Tue, 5 Dec 2023 13:47:51 +0000 (+0100) Subject: refactor: cleanup types import X-Git-Tag: v1.2.29~1 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=6a5f5908423693496fbafa5a83d4c40d8228981d;p=e-mobility-charging-stations-simulator.git refactor: cleanup types import Signed-off-by: Jérôme Benoit --- diff --git a/src/charging-station/ChargingStation.ts b/src/charging-station/ChargingStation.ts index cf574f55..b09134f8 100644 --- a/src/charging-station/ChargingStation.ts +++ b/src/charging-station/ChargingStation.ts @@ -93,7 +93,6 @@ import { type IncomingRequestCommand, type JsonType, MessageType, - type MeterValue, MeterValueMeasurand, type MeterValuesRequest, type MeterValuesResponse, @@ -574,7 +573,7 @@ export class ChargingStation extends EventEmitter { } if (interval > 0) { this.getConnectorStatus(connectorId)!.transactionSetInterval = setInterval(() => { - const meterValue: MeterValue = buildMeterValue( + const meterValue = buildMeterValue( this, connectorId, this.getConnectorStatus(connectorId)!.transactionId!,