Auth0 Universal Components
    Preparing search index...

    Interface OrganizationDetailsFormActions

    Form action configuration for organization details.

    interface OrganizationDetailsFormActions {
        nextAction?: {
            disabled: boolean;
            onClick?: (data: OrganizationPrivate) => boolean | Promise<boolean>;
        };
        [key: string]: FormActionsProps;
        [key: number]: FormActionsProps;
        [key: symbol]: FormActionsProps;
    }

    Hierarchy

    • Omit<FormActionsProps, "nextAction">
      • OrganizationDetailsFormActions

    Indexable

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

    Properties

    Properties

    nextAction?: {
        disabled: boolean;
        onClick?: (data: OrganizationPrivate) => boolean | Promise<boolean>;
    }