From c6045c84b3075954739be904d3454fede196ef8d Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Sat, 22 Apr 2023 23:16:22 +0200 Subject: [PATCH] build(simulator): fix type import MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- src/charging-station/ocpp/1.6/OCPP16Constants.ts | 2 +- src/charging-station/ocpp/2.0/OCPP20Constants.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/charging-station/ocpp/1.6/OCPP16Constants.ts b/src/charging-station/ocpp/1.6/OCPP16Constants.ts index 15ea099b..3c3102cc 100644 --- a/src/charging-station/ocpp/1.6/OCPP16Constants.ts +++ b/src/charging-station/ocpp/1.6/OCPP16Constants.ts @@ -1,4 +1,4 @@ -import { ConnectorStatusTransition, OCPP16ChargePointStatus } from '../../../types'; +import { type ConnectorStatusTransition, OCPP16ChargePointStatus } from '../../../types'; import { OCPPConstants } from '../internal'; export class OCPP16Constants extends OCPPConstants { diff --git a/src/charging-station/ocpp/2.0/OCPP20Constants.ts b/src/charging-station/ocpp/2.0/OCPP20Constants.ts index f02c89c8..1575833a 100644 --- a/src/charging-station/ocpp/2.0/OCPP20Constants.ts +++ b/src/charging-station/ocpp/2.0/OCPP20Constants.ts @@ -1,4 +1,4 @@ -import { ConnectorStatusTransition, OCPP20ConnectorStatusEnumType } from '../../../types'; +import { type ConnectorStatusTransition, OCPP20ConnectorStatusEnumType } from '../../../types'; import { OCPPConstants } from '../internal'; export class OCPP20Constants extends OCPPConstants { -- 2.34.1