Track OCPP commande use at sending error message
[e-mobility-charging-stations-simulator.git] / src / types / JsonType.ts
index 8ed02231f04d94fc942e2fdb8c30f9fc443be19a..846eb7639597bd518cb2fb736674bd1e50b11848 100644 (file)
@@ -1,7 +1,7 @@
-export interface JsonType {
-  [key: string]: JsonValue;
-}
-
 type JsonArray = Array<JsonValue>;
 
 type JsonValue = string | number | boolean | Date | JsonType | JsonArray;
+
+export interface JsonType {
+  [key: string]: JsonValue;
+}