Auth0 Universal Components
    Preparing search index...

    Interface UserMFAMgmtHandlerProps

    interface UserMFAMgmtHandlerProps {
        enrollMfa: (
            factorType: MFAType,
            options?: EnrollOptions,
        ) => Promise<CreateAuthenticationMethodResponseContent>;
        handleCloseDialog: () => void;
        handleConfirmDelete: (factorId: string) => Promise<void>;
        handleEnrollError: (error: Error, stage: any) => void;
        handleEnrollSuccess: () => void;
        onDeleteFactor: (factorId: string, factorType: MFAType) => Promise<void>;
        onEnrollFactor: (factor: MFAType) => void;
        setIsDeleteDialogOpen: Dispatch<SetStateAction<boolean>>;
    }
    Index

    Properties

    enrollMfa: (
        factorType: MFAType,
        options?: EnrollOptions,
    ) => Promise<CreateAuthenticationMethodResponseContent>
    handleCloseDialog: () => void
    handleConfirmDelete: (factorId: string) => Promise<void>
    handleEnrollError: (error: Error, stage: any) => void
    handleEnrollSuccess: () => void
    onDeleteFactor: (factorId: string, factorType: MFAType) => Promise<void>
    onEnrollFactor: (factor: MFAType) => void
    setIsDeleteDialogOpen: Dispatch<SetStateAction<boolean>>