Theia API Documentation v1.65.0
    Preparing search index...
    interface NotificationExt {
        $acceptProgressCanceled(progressId: string): void;
        withProgress<R>(
            options: ProgressOptions,
            task: (
                progress: Progress<{ increment?: number; message?: string }>,
                token: CancellationToken,
            ) => PromiseLike<R>,
        ): PromiseLike<R>;
    }
    Index

    Methods

    • Parameters

      • progressId: string

      Returns void

    • Type Parameters

      • R

      Parameters

      Returns PromiseLike<R>