build(deps-dev): Bump eslint-plugin-vue from 9.18.0 to 9.18.1 in /ui/web
[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;