@blockchaincommons/dcbor - v1.0.0-beta.1
    Preparing search index...
    Cbor: (
        | CborUnsignedType
        | CborNegativeType
        | CborByteStringType
        | CborTextType
        | CborArrayType
        | CborMapType
        | CborTaggedType
        | CborSimpleType
    ) & CborMethods

    A decoded/constructed CBOR value: one of the eight major-type shapes, with the (deliberately tiny) instance-method set from CborMethods attached. The constituent interfaces live in ./cbor-types.

    This is a TYPE-ONLY export. Construct values with cbor(x) and decode with decodeCbor(bytes).