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