Skip to main content
Go to Latest
type alias JsonValue
import { type JsonValue } from "https://deno.land/std@0.158.0/encoding/json/stream.ts";

The type of the result of parsing JSON.

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