Use import type where appropriate
authorJérôme Benoit <jerome.benoit@sap.com>
Mon, 16 May 2022 20:49:06 +0000 (22:49 +0200)
committerJérôme Benoit <jerome.benoit@sap.com>
Mon, 16 May 2022 20:49:06 +0000 (22:49 +0200)
Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
src/charging-station/ocpp/OCPPRequestService.ts
src/types/ocpp/Requests.ts
src/types/ocpp/Responses.ts

index 1149cda56ddceb29dc689f2985fd96a539f36dfc..d03e64ec067759a7ed0fefe8f0ce7fc40bdb48eb 100644 (file)
@@ -8,7 +8,7 @@ import {
 } from '../../types/ocpp/Requests';
 import { JsonObject, JsonType } from '../../types/JsonType';
 
-import ChargingStation from '../ChargingStation';
+import type ChargingStation from '../ChargingStation';
 import Constants from '../../utils/Constants';
 import { EmptyObject } from '../../types/EmptyObject';
 import { ErrorType } from '../../types/ocpp/ErrorType';
@@ -188,7 +188,6 @@ export default abstract class OCPPRequestService {
           /**
            * Function that will receive the request's response
            *
-           * @param chargingStation
            * @param payload
            * @param requestPayload
            */
index b0037ae0bb45099f185b91db61fea82a34cac965..485d58a18c1f15233882c435ee3b21fab988ed95 100644 (file)
@@ -7,7 +7,7 @@ import {
   OCPP16StatusNotificationRequest,
 } from './1.6/Requests';
 
-import ChargingStation from '../../charging-station/ChargingStation';
+import type ChargingStation from '../../charging-station/ChargingStation';
 import { JsonType } from '../JsonType';
 import { MessageType } from './MessageType';
 import { OCPP16DiagnosticsStatus } from './1.6/DiagnosticsStatus';
index a3c6672c6561b8fea689179be46e11d9d4690e93..62df6ccdfc05289fae6a530acc405be06e54e9ac 100644 (file)
@@ -11,7 +11,7 @@ import {
   OCPP16UnlockStatus,
 } from './1.6/Responses';
 
-import ChargingStation from '../../charging-station/ChargingStation';
+import type ChargingStation from '../../charging-station/ChargingStation';
 import { ErrorType } from './ErrorType';
 import { JsonType } from '../JsonType';
 import { MessageType } from './MessageType';