256f0f42f7c76b7fccb1e16b2cb70921391c3534
[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;