UI Services: add status notification command
[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;