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