| Current Path : /var/www/homesaver/www/bitrix/js/main/core/src/lib/types/ |
| Current File : /var/www/homesaver/www/bitrix/js/main/core/src/lib/types/json.js |
export type JsonValue = string | number | boolean | { [x: string]: JsonValue } | Array<JsonValue>;
export type JsonObject = Object<string, JsonValue>;