Add chargePointSerialNumberPrefix support to CS template
[e-mobility-charging-stations-simulator.git] / src / types / JsonType.ts
index 8ed02231f04d94fc942e2fdb8c30f9fc443be19a..8908b7815a9f64e53433dc6d67a18cb846732015 100644 (file)
@@ -1,7 +1,7 @@
+type JsonArray = Array<JsonValue>;
+
+export type JsonValue = string | number | boolean | Date | JsonType | JsonArray;
+
 export interface JsonType {
   [key: string]: JsonValue;
 }
-
-type JsonArray = Array<JsonValue>;
-
-type JsonValue = string | number | boolean | Date | JsonType | JsonArray;