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
... / ...
CommitLineData
1type JsonPrimitive = string | number | boolean | Date | null;
2
3export type JsonObject = {
4 [key in string]?: JsonType;
5};
6
7export type JsonType = JsonPrimitive | JsonType[] | JsonObject;