/** * JSON-совместимый тип данных */ export type JSONType = string | number | boolean | null | JSONObject | JSONArray; /** * JSON-совместимый массив */ export interface JSONArray extends Array { } /** * JSON-совместимый объект */ export interface JSONObject { [key: string]: JSONType; }