BC-DCBOR TypeScript Library - v1.0.0-alpha.13
    Preparing search index...

    Interface CborArrayWrapper

    A wrapper around CBOR arrays that provides a get(index) method for envelope compatibility.

    interface CborArrayWrapper {
        length: number;
        get(index: number): Cbor | undefined;
        "[iterator]"(): Iterator<Cbor>;
    }
    Index

    Properties

    Methods

    Properties

    length: number

    Methods