Add OCPP params file monitoring
[e-mobility-charging-stations-simulator.git] / src / types / JsonType.ts
index 846eb7639597bd518cb2fb736674bd1e50b11848..8908b7815a9f64e53433dc6d67a18cb846732015 100644 (file)
@@ -1,6 +1,6 @@
 type JsonArray = Array<JsonValue>;
 
-type JsonValue = string | number | boolean | Date | JsonType | JsonArray;
+export type JsonValue = string | number | boolean | Date | JsonType | JsonArray;
 
 export interface JsonType {
   [key: string]: JsonValue;