type alias JsonValueimport { type JsonValue } from "https://deno.land/std@0.189.0/json/common.ts"; The type of the result of parsing JSON. definition: | { [key: string]: JsonValue | undefined; } | JsonValue[] | string | number | boolean | null