ДокументацияJS SDK: Типы (Type Aliases)Type Alias: JsonValue

Type Alias: JsonValue

TS THEME={NULL} api.wedstack.ru/v1
type JsonValue = 
  | string
  | number
  | boolean
  | null
  | JsonValue[]
  | {
[key: string]: JsonValue;
};

JSON-совместимое значение.