Auth0 Universal Components
    Preparing search index...

    Interface SsoProviderDetailsFormActions

    Form actions for SSO provider details.

    interface SsoProviderDetailsFormActions {
        nextAction?: {
            disabled: boolean;
            onClick?: (
                data: UpdateIdentityProviderRequestContentPrivate,
            ) => Promise<void>;
        };
        [key: string]: FormActionsProps;
        [key: number]: FormActionsProps;
        [key: symbol]: FormActionsProps;
    }

    Hierarchy

    • Omit<FormActionsProps, "nextAction">
      • SsoProviderDetailsFormActions

    Indexable

    • [key: string]: FormActionsProps
    • [key: number]: FormActionsProps
    • [key: symbol]: FormActionsProps
    Index

    Properties

    Properties

    nextAction?: {
        disabled: boolean;
        onClick?: (
            data: UpdateIdentityProviderRequestContentPrivate,
        ) => Promise<void>;
    }