3a2765f6120552337b53fd1499d9b2a2b35214b4
[e-mobility-charging-stations-simulator.git] / ui / web / src / types / JsonType.ts
1 export type JsonType = JsonPrimitive | JsonType[] | JsonObject
2 export type JsonObject = { [key in string]?: JsonType }
3 export type JsonPrimitive = string | number | boolean | Date | null