Theia API Documentation v1.65.0
    Preparing search index...

    Value-object describing where and how progress should show.

    interface ProgressOptions {
        cancellable?: boolean;
        location: ProgressLocation | { viewId: string };
        title?: string;
    }
    Index

    Properties

    cancellable?: boolean

    Controls if a cancel button should show to allow the user to cancel the long running operation. Note that currently only ProgressLocation.Notification is supporting to show a cancel button.

    location: ProgressLocation | { viewId: string }

    The location at which progress should show.

    title?: string

    A human-readable string which will be used to describe the operation.