@blockchaincommons/envelope - v1.0.0-beta.4
    Preparing search index...

    Type Alias EnvelopeInput

    EnvelopeInput:
        | ToEnvelope
        | string
        | number
        | boolean
        | bigint
        | Uint8Array
        | Date
        | null
        | Envelope
        | KnownValue
        | ToCbor

    Helper type for values that can be encoded as envelopes.

    This includes:

    • Types that directly implement ToEnvelope
    • Primitive types (string, number, boolean)
    • Uint8Array (for binary data)
    • null and undefined

    The Envelope class will handle conversion of these types automatically.