refactor: cleanup eslint configuration
[e-mobility-charging-stations-simulator.git] / src / types / ocpp / Responses.ts
index 9983ee8a81b0721fb306d55cfb88dca15055ac57..aac5a5fc3774b39d008b454d5e85faad021e2016 100644 (file)
@@ -1,3 +1,5 @@
+import type { ChargingStation } from '../../charging-station/index.js'
+import type { JsonType } from '../JsonType.js'
 import type { OCPP16MeterValuesResponse } from './1.6/MeterValues.js'
 import {
   OCPP16AvailabilityStatus,
@@ -19,8 +21,6 @@ import type { OCPP20BootNotificationResponse, OCPP20ClearCacheResponse } from '.
 import { type GenericResponse, GenericStatus } from './Common.js'
 import type { ErrorType } from './ErrorType.js'
 import type { MessageType } from './MessageType.js'
-import type { ChargingStation } from '../../charging-station/index.js'
-import type { JsonType } from '../JsonType.js'
 
 export type Response = [MessageType.CALL_RESULT_MESSAGE, string, JsonType]