diff --git a/src/index.tsx b/src/index.tsx index ef799fc..4a13b6a 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -29,7 +29,7 @@ const WalletSdk = WalletSdkModule * @param cborBase64 Base64 of the CBOR of the MDoc to register * @returns UUID object ID of the MDoc created */ -export function createMdocFromCbor(cborBase64: string): Promise { +export function createMdocFromCbor(cborBase64: string): Promise { return WalletSdk.createMdocFromCbor(cborBase64); } @@ -44,7 +44,7 @@ export function createSoftPrivateKeyFromPKCS8PEM( algo: string, key: string, cert: string -): Promise { +): Promise { return WalletSdk.createSoftPrivateKeyFromPKCS8PEM(algo, key, cert); }