Get rid of useless intermediate variable
[e-mobility-charging-stations-simulator.git] / src / types / JsonType.ts
index 79670c9a5c894e4a63643a93d149cd0b625c1239..8908b7815a9f64e53433dc6d67a18cb846732015 100644 (file)
@@ -1,8 +1,7 @@
 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;
 }
-