@rize-labs/paas
Version:
Passkey management module for all your passkey requirements
14 lines (13 loc) • 626 B
TypeScript
import { IWebAuthnRegistrationResponse } from "./types";
/**
* Retrieves passkey metadata for a given wallet identifier.
* @param walletIdentifier The wallet identifier.
* @returns A Promise that resolves to an IWebAuthnRegistrationResponse object.
*/
export declare const getPasskeyMeta: (walletIdentifier: string) => Promise<IWebAuthnRegistrationResponse>;
/**
* Checks if a given wallet name is unique.
* @param walletName The wallet name to check for uniqueness.
* @returns A boolean indicating whether the wallet name is unique.
*/
export declare const isUserNameUnqiue: (walletName: string) => Promise<boolean>;