Introduce JSON type and use it for OCPP and internal message structure
[e-mobility-charging-stations-simulator.git] / src / types / JsonType.ts
CommitLineData
c3ee95af
JB
1export interface JsonType {
2 [x: string]: string | number | boolean | Date | JsonType | JsonArray;
3}
4
5type JsonArray = Array<string | number | boolean | Date | JsonType | JsonArray>;