X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Ftypes%2Focpp%2FRequests.ts;h=12e1c68c3e6996cf9c3d1ddb48158662ea7ab0df;hb=16c46962f43a692c996b1c89a94dc572fea52d63;hp=cc9a489e4caa6f1aa6ad7ba5051c274d1207e3d8;hpb=68220b423c52da387fdf41967dd8c738da0ff52e;p=e-mobility-charging-stations-simulator.git diff --git a/src/types/ocpp/Requests.ts b/src/types/ocpp/Requests.ts index cc9a489e..12e1c68c 100644 --- a/src/types/ocpp/Requests.ts +++ b/src/types/ocpp/Requests.ts @@ -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 = {