@blockchaincommons/dcbor - v1.0.0-beta.1
    Preparing search index...

    Interface CborByteStringType

    interface CborByteStringType {
        isCbor: true;
        type: 2;
        value: Uint8Array;
    }
    Index
    isCbor: true
    type: 2
    value: Uint8Array

    The byte-string content. For DECODED values this is a zero-copy view aliasing the input buffer passed to decodeCbor - call .slice() before mutating either side, since this deliberately does not copy.