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