Use import type where appropriate
[e-mobility-charging-stations-simulator.git] / src / types / JsonType.ts
index 2bd219f40ab9f982961ac5774596f5398ae0d353..5b6c9f6fc4184e019288b02caa3366d3e8d8160b 100644 (file)
@@ -1,5 +1,7 @@
-export interface JsonType {
-  [x: string]: string | number | boolean | Date | JsonType | JsonArray;
-}
+type JsonPrimitive = string | number | boolean | Date | null;
 
-type JsonArray = Array<string | number | boolean | Date | JsonType | JsonArray>;
+export type JsonObject = {
+  [key in string]: JsonType;
+};
+
+export type JsonType = JsonPrimitive | JsonType[] | JsonObject;