@kkdev92/vscode-ext-kit - v4.1.1
    Preparing search index...

    Interface FakeProgress

    A fake progress capability that starts tasks immediately and records sessions. Cancellation flips the structural token and notifies listeners; it does not interrupt a task that chooses not to observe that token.

    interface FakeProgress {
        runs: readonly FakeProgressRun[];
        run<T>(
            options: {
                cancellable: boolean;
                location: ProgressArea;
                title: string;
            },
            task: (
                reporter: ProgressReporterLike,
                token: CancellationTokenLike,
            ) => Promise<T>,
        ): Promise<T>;
    }

    Hierarchy

    • ProgressCapability
      • FakeProgress
    Index
    runs: readonly FakeProgressRun[]

    Every session, in start order. The task may still be running.