build(deps): bump vue from 3.4.36 to 3.4.37 in the regular group (#1132)
[e-mobility-charging-stations-simulator.git] / JsonType.ts
... / ...
CommitLineData
1export type JsonType = JsonPrimitive | JsonType[] | JsonObject;
2export type JsonObject = { [key in string]?: JsonType };
3export type JsonPrimitive = string | number | boolean | Date | null;