Auth0 Universal Components
    Preparing search index...

    Interface UseDomainTableLogicResult

    interface UseDomainTableLogicResult {
        handleCloseVerifyModal: () => void;
        handleConfigureClick: (domain: Domain) => void;
        handleCreate: (domainUrl: string) => Promise<void>;
        handleCreateClick: () => void;
        handleDelete: (domain: Domain) => void;
        handleDeleteClick: (domain: Domain) => void;
        handleToggleSwitch: (
            domain: Domain,
            provider: IdpKnownResponse,
            checked: boolean,
        ) => void;
        handleVerify: (domain: Domain) => Promise<void>;
        handleVerifyClick: (domain: Domain) => Promise<void>;
        selectedDomain: Domain | null;
        setShowConfigureModal: (show: boolean) => void;
        setShowCreateModal: (show: boolean) => void;
        setShowDeleteModal: (show: boolean) => void;
        setShowVerifyModal: (show: boolean) => void;
        showConfigureModal: boolean;
        showCreateModal: boolean;
        showDeleteModal: boolean;
        showVerifyModal: boolean;
        verifyError: string | undefined;
    }
    Index

    Properties

    handleCloseVerifyModal: () => void
    handleConfigureClick: (domain: Domain) => void
    handleCreate: (domainUrl: string) => Promise<void>
    handleCreateClick: () => void
    handleDelete: (domain: Domain) => void
    handleDeleteClick: (domain: Domain) => void
    handleToggleSwitch: (
        domain: Domain,
        provider: IdpKnownResponse,
        checked: boolean,
    ) => void
    handleVerify: (domain: Domain) => Promise<void>
    handleVerifyClick: (domain: Domain) => Promise<void>
    selectedDomain: Domain | null
    setShowConfigureModal: (show: boolean) => void
    setShowCreateModal: (show: boolean) => void
    setShowDeleteModal: (show: boolean) => void
    setShowVerifyModal: (show: boolean) => void
    showConfigureModal: boolean
    showCreateModal: boolean
    showDeleteModal: boolean
    showVerifyModal: boolean
    verifyError: string | undefined