@dynamic-labs/sdk-react-core
Version:
A React SDK for implementing wallet web3 authentication and authorization to your website.
9 lines (8 loc) • 390 B
TypeScript
import { FC } from 'react';
import { AuthenticatorType } from '@dynamic-labs/wallet-connector-core';
import { EmbeddedWalletCurrentAction } from '../../../../shared/types';
export type PasskeyBundleValidationProps = {
authenticatorType: AuthenticatorType;
currentAction?: EmbeddedWalletCurrentAction;
};
export declare const PasskeyBundleRecovery: FC<PasskeyBundleValidationProps>;