X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Ftypes%2Focpp%2FResponses.ts;h=aac5a5fc3774b39d008b454d5e85faad021e2016;hb=16c46962f43a692c996b1c89a94dc572fea52d63;hp=9983ee8a81b0721fb306d55cfb88dca15055ac57;hpb=66a7748ddeda8c94d7562a1ce58d440319654a4c;p=e-mobility-charging-stations-simulator.git diff --git a/src/types/ocpp/Responses.ts b/src/types/ocpp/Responses.ts index 9983ee8a..aac5a5fc 100644 --- a/src/types/ocpp/Responses.ts +++ b/src/types/ocpp/Responses.ts @@ -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]