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