Merge dependabot/npm_and_yarn/types/tar-6.1.12 into combined-prs-branch
[e-mobility-charging-stations-simulator.git] / ui / web / src / types / JsonType.ts
index e9f181ce1304276455ea3a9127d2994572f1ecdf..8f597383a4bba8d98e727288dd987a579c1c0328 100644 (file)
@@ -1,3 +1,3 @@
-export type JsonType = JsonPrimitive | JsonType[] | JsonObject;
-export type JsonObject = { [key in string]?: JsonType };
-export type JsonPrimitive = string | number | boolean | Date | null;
+type JsonPrimitive = string | number | boolean | Date | null
+export type JsonObject = { [key in string]?: JsonType }
+export type JsonType = JsonPrimitive | JsonType[] | JsonObject