🛡️TypeSafe 中文文档
原文档 ↗

类型别名:JsonValue

ts
type JsonValue = 
  | string
  | number
  | boolean
  | null
  | JsonValue[]
  | {
[key: string]: JsonValue;
};

一个与 JSON 兼容的值。