Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Go to Latest
type alias JsonValue
import { type JsonValue } from "https://deno.land/std@0.170.0/encoding/json/stream.ts";

The type of the result of parsing JSON.

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