类型别名:JsonValue
ts
type JsonValue =
| string
| number
| boolean
| null
| JsonValue[]
| {
[key: string]: JsonValue;
};一个与 JSON 兼容的值。