Do not throw an error at OCPP message sending to avoid crashing the
[e-mobility-charging-stations-simulator.git] / src / types / 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}