chore(deps-dev): apply updates
[e-mobility-charging-stations-simulator.git] / JsonType.ts
... / ...
CommitLineData
1type JsonArray = Array<JsonValue>;
2
3type JsonValue = string | number | boolean | Date | JsonType | JsonArray;
4
5export interface JsonType {
6 [key: string]: JsonValue;
7}