Move web ui code in its own directory
[e-mobility-charging-stations-simulator.git] / src / types / ocpp / Requests.ts
index 99a3f817b064301c55d396c28f11a557c0c6b90e..052bfc6bc044e41bf8e6e8a7f1d8e78f24983db1 100644 (file)
@@ -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;