Blockchain Commons Components TypeScript Library - v1.0.0-alpha.13
    Preparing search index...

    Variable SSKRShare

    SSKRShare: {
        fromData: (data: Uint8Array) => SSKRShareCbor;
        fromHex: (hex: string) => SSKRShareCbor;
        fromTaggedCbor: (cborValue: Cbor) => SSKRShareCbor;
        fromTaggedCborData: (data: Uint8Array) => SSKRShareCbor;
        fromUntaggedCborData: (data: Uint8Array) => SSKRShareCbor;
    }

    Create an SSKRShare from raw data. This is a convenience function that matches the Rust constructor pattern.

    Type Declaration