build(deps-dev): bump tsx from 4.7.1 to 4.7.2
[e-mobility-charging-stations-simulator.git] / src / types / JsonType.ts
CommitLineData
66a7748d 1type JsonPrimitive = string | number | boolean | Date | null
a6243c35 2
e3822d6f 3export type JsonObject = {
66a7748d
JB
4 [key in string]?: JsonType
5}
e3822d6f 6
66a7748d 7export type JsonType = JsonPrimitive | JsonType[] | JsonObject