Interface CancellationToken

interface CancellationToken {
    isCancellationRequested: boolean;
    onCancellationRequested: Event<void>;
}

Properties

isCancellationRequested: boolean
onCancellationRequested: Event<void>