fix(simulator): detect string emptyness properly
[e-mobility-charging-stations-simulator.git] / src / types / ocpp / Responses.ts
index 55c5c3387a70089e754cec129e7489df7d6c84c8..df4bdf90fe084c0f7ea88207ebb0e081f404e5f4 100644 (file)
@@ -1,5 +1,3 @@
-import type ChargingStation from '../../charging-station/ChargingStation';
-import type { JsonType } from '../JsonType';
 import type { OCPP16MeterValuesResponse } from './1.6/MeterValues';
 import {
   OCPP16AvailabilityStatus,
@@ -23,6 +21,8 @@ import type {
 } from './2.0/Responses';
 import type { ErrorType } from './ErrorType';
 import type { MessageType } from './MessageType';
+import type ChargingStation from '../../charging-station/ChargingStation';
+import type { JsonType } from '../JsonType';
 
 export type Response = [MessageType.CALL_RESULT_MESSAGE, string, JsonType];