docs: fix README.md formatting
[e-mobility-charging-stations-simulator.git] / src / types / JsonType.ts
index 4e4aedc01a869365574cb470f04b3f30318c4ffc..17db232c50cb7c55ec21d80cb0aacd1137010415 100644 (file)
@@ -1,7 +1,7 @@
-type JsonArray = Array<JsonValue>;
+type JsonPrimitive = string | number | boolean | Date | null
 
-export type JsonValue = string | number | boolean | Date | JsonType | JsonArray;
+export type JsonObject = {
+  [key in string]?: JsonType
+}
 
-export type JsonType = {
-  [key in string]: JsonValue;
-};
+export type JsonType = JsonPrimitive | JsonType[] | JsonObject