X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Ftypes%2Focpp%2FResponses.ts;h=c57510ae7eaf04ebb71d9c407e9a9007b574a9c3;hb=ebbfbf1c01e010d051956867484b74a94237f546;hp=d5b4b7c578ad31a188a295ce8bc3e9e55af85088;hpb=8114d10e3893e96bb725ce2fca9744429ee4b75b;p=e-mobility-charging-stations-simulator.git diff --git a/src/types/ocpp/Responses.ts b/src/types/ocpp/Responses.ts index d5b4b7c5..c57510ae 100644 --- a/src/types/ocpp/Responses.ts +++ b/src/types/ocpp/Responses.ts @@ -1,6 +1,6 @@ import type ChargingStation from '../../charging-station/ChargingStation'; -import { JsonType } from '../JsonType'; -import { OCPP16MeterValuesResponse } from './1.6/MeterValues'; +import type { JsonType } from '../JsonType'; +import type { OCPP16MeterValuesResponse } from './1.6/MeterValues'; import { OCPP16AvailabilityStatus, OCPP16BootNotificationResponse, @@ -13,8 +13,8 @@ import { OCPP16TriggerMessageStatus, OCPP16UnlockStatus, } from './1.6/Responses'; -import { ErrorType } from './ErrorType'; -import { MessageType } from './MessageType'; +import type { ErrorType } from './ErrorType'; +import type { MessageType } from './MessageType'; export type Response = [MessageType.CALL_RESULT_MESSAGE, string, JsonType]; @@ -39,9 +39,9 @@ export enum DefaultStatus { REJECTED = 'Rejected', } -export interface DefaultResponse { +export type DefaultResponse = { status: DefaultStatus; -} +}; export type RegistrationStatus = OCPP16RegistrationStatus;