refactor: cleanup types import
authorJérôme Benoit <jerome.benoit@sap.com>
Tue, 5 Dec 2023 13:47:51 +0000 (14:47 +0100)
committerJérôme Benoit <jerome.benoit@sap.com>
Tue, 5 Dec 2023 13:47:51 +0000 (14:47 +0100)
Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
src/charging-station/ChargingStation.ts

index cf574f55bd4c768db507f9a36a479164806d13a9..b09134f88e9e1f915519bf325b14c32407b50d44 100644 (file)
@@ -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!,