Merge dependabot/npm_and_yarn/types/tar-6.1.12 into combined-prs-branch
[e-mobility-charging-stations-simulator.git] / src / types / ocpp / Requests.ts
index cc9a489e4caa6f1aa6ad7ba5051c274d1207e3d8..12e1c68c3e6996cf9c3d1ddb48158662ea7ab0df 100644 (file)
@@ -1,3 +1,6 @@
+import type { ChargingStation } from '../../charging-station/index.js'
+import type { OCPPError } from '../../exception/index.js'
+import type { JsonType } from '../JsonType.js'
 import { OCPP16DiagnosticsStatus } from './1.6/DiagnosticsStatus.js'
 import type { OCPP16MeterValuesRequest } from './1.6/MeterValues.js'
 import {
@@ -23,9 +26,6 @@ import {
   type OCPP20StatusNotificationRequest
 } from './2.0/Requests.js'
 import type { MessageType } from './MessageType.js'
-import type { ChargingStation } from '../../charging-station/index.js'
-import type { OCPPError } from '../../exception/index.js'
-import type { JsonType } from '../JsonType.js'
 
 export const RequestCommand = {
   ...OCPP16RequestCommand,
@@ -64,7 +64,7 @@ export type CachedRequest = [
   ResponseCallback,
   ErrorCallback,
   RequestCommand | IncomingRequestCommand,
-  JsonType,
+  JsonType
 ]
 
 export const MessageTrigger = {