Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

std/jsonc/parse.ts>JSONValue

Deno standard library
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.181.0/jsonc/parse.ts";

Valid types as a result of JSON parsing

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