Auth0 Universal Components
    Preparing search index...

    Interface UseSsoDomainTabReturn

    interface UseSsoDomainTabReturn {
        domainsList: Domain[];
        handleCloseVerifyModal: () => void;
        handleCreate: (domainUrl: string) => Promise<void>;
        handleDelete: (domain: Domain) => void;
        handleDeleteClick: (domain: Domain) => void;
        handleToggleSwitch: (
            domain: Domain,
            newCheckedValue: boolean,
        ) => Promise<void>;
        handleVerify: (domain: Domain) => Promise<void>;
        handleVerifyActionColumn: (domain: Domain) => Promise<void>;
        idpDomains: string[];
        isCreating: boolean;
        isDeleting: boolean;
        isLoading: boolean;
        isUpdating: boolean;
        isUpdatingId: string | null;
        isVerifying: boolean;
        selectedDomain: Domain | null;
        setShowCreateModal: (show: boolean) => void;
        setShowDeleteModal: (show: boolean) => void;
        showCreateModal: boolean;
        showDeleteModal: boolean;
        showVerifyModal: boolean;
        verifyError: string | undefined;
    }
    Index

    Properties

    domainsList: Domain[]
    handleCloseVerifyModal: () => void
    handleCreate: (domainUrl: string) => Promise<void>
    handleDelete: (domain: Domain) => void
    handleDeleteClick: (domain: Domain) => void
    handleToggleSwitch: (domain: Domain, newCheckedValue: boolean) => Promise<void>
    handleVerify: (domain: Domain) => Promise<void>
    handleVerifyActionColumn: (domain: Domain) => Promise<void>
    idpDomains: string[]
    isCreating: boolean
    isDeleting: boolean
    isLoading: boolean
    isUpdating: boolean
    isUpdatingId: string | null
    isVerifying: boolean
    selectedDomain: Domain | null
    setShowCreateModal: (show: boolean) => void
    setShowDeleteModal: (show: boolean) => void
    showCreateModal: boolean
    showDeleteModal: boolean
    showVerifyModal: boolean
    verifyError: string | undefined