Merge dependabot/npm_and_yarn/typescript-eslint/parser-6.9.0 into combined-prs-branch
[e-mobility-charging-stations-simulator.git] / ui / web / src / types / JsonType.ts
CommitLineData
32de5a57
LM
1export type JsonType = JsonPrimitive | JsonType[] | JsonObject;
2export type JsonObject = { [key in string]?: JsonType };
3export type JsonPrimitive = string | number | boolean | Date | null;