ATG: add support for idTag distribution algorithms
[e-mobility-charging-stations-simulator.git] / src / types / JsonType.ts
index 846eb7639597bd518cb2fb736674bd1e50b11848..256f0f42f7c76b7fccb1e16b2cb70921391c3534 100644 (file)
@@ -1,7 +1,7 @@
-type JsonArray = Array<JsonValue>;
+type JsonPrimitive = string | number | boolean | Date | null;
 
-type JsonValue = string | number | boolean | Date | JsonType | JsonArray;
+export type JsonObject = {
+  [key in string]?: JsonType;
+};
 
-export interface JsonType {
-  [key: string]: JsonValue;
-}
+export type JsonType = JsonPrimitive | JsonType[] | JsonObject;