chore: switch coding style to JS standard
[e-mobility-charging-stations-simulator.git] / ui / web / src / types / JsonType.ts
CommitLineData
66a7748d
JB
1export type JsonType = JsonPrimitive | JsonType[] | JsonObject
2export type JsonObject = { [key in string]?: JsonType }
3export type JsonPrimitive = string | number | boolean | Date | null