docs(README.md): refine volta installation on windows
[e-mobility-charging-stations-simulator.git] / ui / web / src / types / JsonType.ts
... / ...
CommitLineData
1type JsonPrimitive = string | number | boolean | Date | null
2export type JsonObject = { [key in string]?: JsonType }
3export type JsonType = JsonPrimitive | JsonType[] | JsonObject