@dynamic-labs/sdk-react-core
Version:
A React SDK for implementing wallet web3 authentication and authorization to your website.
12 lines (11 loc) • 360 B
TypeScript
/// <reference types="react" />
import { MFADeviceType } from '@dynamic-labs/sdk-api-core';
type MFAAuthType = MFADeviceType | 'backupCode';
export type MfaOption = {
Icon?: React.ReactNode;
descriptionKey: string;
labelKey: string;
type: MFAAuthType;
};
export declare const getMfaOptions: (isInitialSetup: boolean) => MfaOption[];
export {};