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