4e4aedc01a869365574cb470f04b3f30318c4ffc
[e-mobility-charging-stations-simulator.git] / src / types / JsonType.ts
1 type JsonArray = Array<JsonValue>;
2
3 export type JsonValue = string | number | boolean | Date | JsonType | JsonArray;
4
5 export type JsonType = {
6 [key in string]: JsonValue;
7 };