Skip to main content
Module

std/jsonc/mod.ts>JsonValue

The Deno Standard Library
Latest
type alias JsonValue
Re-export
import { type JsonValue } from "https://deno.land/std@0.224.0/jsonc/mod.ts";

The type of the result of parsing JSON.

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