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.148.0/encoding/json/stream.ts";

The type of the result of parsing JSON.

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