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

    Interface CancellationTokenLike

    The structural subset of vscode.CancellationToken the framework needs. A real token satisfies it, and so does a fake, which is what lets cancellation logic be tested without an extension host.

    interface CancellationTokenLike {
        isCancellationRequested: boolean;
        onCancellationRequested(listener: () => void): PlatformRegistration;
    }
    Index
    isCancellationRequested: boolean