Type Alias: JSONValue
type JSONValue =
| null
| string
| number
| boolean
| JSONObject
| JSONArray;Defined in: packages/protocol/src/json.ts:5
A JSON value can be a string, number, boolean, object, array, or null. JSON values can be serialized and deserialized by the JSON.stringify and JSON.parse methods.