X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Ftypes%2FJsonType.ts;h=5b6c9f6fc4184e019288b02caa3366d3e8d8160b;hb=18d3414af1e352238e2888687b02d6e2606fb4f9;hp=8ed02231f04d94fc942e2fdb8c30f9fc443be19a;hpb=122d9243eeb1a125dab68b6ab681f544e65dfbbb;p=e-mobility-charging-stations-simulator.git diff --git a/src/types/JsonType.ts b/src/types/JsonType.ts index 8ed02231..5b6c9f6f 100644 --- a/src/types/JsonType.ts +++ b/src/types/JsonType.ts @@ -1,7 +1,7 @@ -export interface JsonType { - [key: string]: JsonValue; -} +type JsonPrimitive = string | number | boolean | Date | null; -type JsonArray = Array; +export type JsonObject = { + [key in string]: JsonType; +}; -type JsonValue = string | number | boolean | Date | JsonType | JsonArray; +export type JsonType = JsonPrimitive | JsonType[] | JsonObject;