Type Alias JSONValue

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

Type declaration for a JSON value.