Merge dependabot/npm_and_yarn/ui/web/vue/eslint-config-typescript-12.0.0 into combine...
[e-mobility-charging-stations-simulator.git] / src / types / JsonType.ts
1 type JsonPrimitive = string | number | boolean | Date | null;
2
3 export type JsonObject = {
4 [key in string]?: JsonType;
5 };
6
7 export type JsonType = JsonPrimitive | JsonType[] | JsonObject;