chore: switch coding style to JS standard
[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