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