Skip to main content
The Deno 2 Release Candidate is here
Learn more
Go to Latest
The Standard Library has been moved to JSR. See the blog post for details.
type alias JsonValue
import { type JsonValue } from "https://deno.land/std@0.172.0/encoding/json/stream.ts";

The type of the result of parsing JSON.

definition:
| { [key: string]: JsonValue | undefined; }
| string
| number
| boolean
| null