Auth0 Universal Components
    Preparing search index...

    Interface DeleteFactorConfirmationProps

    interface DeleteFactorConfirmationProps {
        customMessages?: Partial<MFAMessages>;
        factorToDelete: { id: string; type: MFAType } | null;
        isDeletingFactor: boolean;
        onCancel: () => void;
        onConfirm: (factorId: string) => void;
        onOpenChange: (open: boolean) => void;
        open: boolean;
        readOnly?: boolean;
        schema?: object;
        styling?: ComponentStyling<UserMFAMgmtClasses>;
    }

    Hierarchy

    Index

    Properties

    customMessages?: Partial<MFAMessages>
    factorToDelete: { id: string; type: MFAType } | null
    isDeletingFactor: boolean
    onCancel: () => void
    onConfirm: (factorId: string) => void
    onOpenChange: (open: boolean) => void
    open: boolean
    readOnly?: boolean
    schema?: object
    styling?: ComponentStyling<UserMFAMgmtClasses>