build(deps-dev): apply updates
[e-mobility-charging-stations-simulator.git] / src / types / ocpp / Requests.ts
index 38cb22fc7377d8348129e7b18675d36f5b2c8f5b..a2407476fd90d24eb6d971afd66ff664390c1e50 100644 (file)
@@ -35,11 +35,11 @@ export type RequestCommand = OCPP16RequestCommand | OCPP20RequestCommand;
 
 export type OutgoingRequest = [MessageType.CALL_MESSAGE, string, RequestCommand, JsonType];
 
-export type RequestParams = {
+export interface RequestParams {
   skipBufferingOnError?: boolean;
   triggerMessage?: boolean;
   throwError?: boolean;
-};
+}
 
 export const IncomingRequestCommand = {
   ...OCPP16IncomingRequestCommand,