@umbraco-cms/backoffice
    Preparing search index...

    Interface UmbEntityBulkActionIndeterminateArgs<T>

    interface UmbEntityBulkActionIndeterminateArgs<T> {
        delayMs?: number;
        headline: string;
        operation: Promise<T>;
    }

    Type Parameters

    • T
    Index
    delayMs?: number

    How long to wait before showing the dialog. Defaults to 400ms.

    headline: string

    The headline shown in the progress dialog.

    operation: Promise<T>

    The operation to await. The dialog is only shown if it does not settle within delayMs.