X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Ftypes%2Focpp%2FRequests.ts;h=052bfc6bc044e41bf8e6e8a7f1d8e78f24983db1;hb=ebbfbf1c01e010d051956867484b74a94237f546;hp=99a3f817b064301c55d396c28f11a557c0c6b90e;hpb=6c1761d470507ea23d186be61b94ca7375c5144a;p=e-mobility-charging-stations-simulator.git diff --git a/src/types/ocpp/Requests.ts b/src/types/ocpp/Requests.ts index 99a3f817..052bfc6b 100644 --- a/src/types/ocpp/Requests.ts +++ b/src/types/ocpp/Requests.ts @@ -21,10 +21,10 @@ export const RequestCommand = { export type OutgoingRequest = [MessageType.CALL_MESSAGE, string, RequestCommand, JsonType]; -export interface RequestParams { +export type RequestParams = { skipBufferingOnError?: boolean; triggerMessage?: boolean; -} +}; export type IncomingRequestCommand = OCPP16IncomingRequestCommand;