Any value that can appear in parsed JSON: a JsonPrimitive, an array of values, or a nested JsonObject. Mirrors the recursive shape of JSON.parse output.
JSON.parse
const v: JsonValue = { name: "Potassium hydroxide", images: ["a.jpg", "b.jpg"] }; Copy
const v: JsonValue = { name: "Potassium hydroxide", images: ["a.jpg", "b.jpg"] };
Any value that can appear in parsed JSON: a JsonPrimitive, an array of values, or a nested JsonObject. Mirrors the recursive shape of
JSON.parseoutput.