Type Alias JsonValue

Expand description

Any JSON value accepted by credential info and blind-message fields.

type JsonValue = 
    | null
    | boolean
    | number
    | string
    | JsonValue[]
    | { readonly [key: string]: JsonValue }