Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

std/jsonc/mod.ts>JsonValue

Deno standard library
Go to Latest
type alias JsonValue
Re-export
import { type JsonValue } from "https://deno.land/std@0.208.0/jsonc/mod.ts";

The type of the result of parsing JSON.

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