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

    The structural encode protocol: types that can convert themselves to CBOR. cbor() dispatches on it, following the toJSON precedent.

    Tagged types conventionally also keep cborTags() / untaggedCbor() / taggedCbor() as ordinary members and implement toCbor() as return this.taggedCbor();.

    interface ToCbor {
        toCbor(): Cbor;
    }
    Index