Add OCPP params file monitoring
[e-mobility-charging-stations-simulator.git] / src / types / JsonType.ts
CommitLineData
a6243c35
JB
1type JsonArray = Array<JsonValue>;
2
a95873d8 3export type JsonValue = string | number | boolean | Date | JsonType | JsonArray;
a6243c35 4
c3ee95af 5export interface JsonType {
122d9243 6 [key: string]: JsonValue;
c3ee95af 7}