Type Alias CborType

CborType:
    | CborPrimitiveType
    | CborTag<CborType>
    | Map<CborType, CborType>
    | CborType[]
    | {
        [k: string]: CborType;
    }

This type specifies the encodable and decodable values for encodeCbor, decodeCbor, encodeCborSequence, and decodeCborSequence.