Type Alias JsonValue

JsonValue:
    | JsonContainerID
    | string
    | number
    | boolean
    | null
    | { [key: string]: JsonValue }
    | Uint8Array
    | JsonValue[]