UNPKG

yandex-dialoger

Version:

Ещё одна библиотека/фреймворк для разработки навыков Алисы.

18 lines (17 loc) 463 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.CancellationTokenSource = void 0; class CancellationTokenSource { constructor() { this.tokenInternal = { isCancellationRequested: false, }; } get token() { return this.tokenInternal; } cancel() { this.tokenInternal.isCancellationRequested = true; } } exports.CancellationTokenSource = CancellationTokenSource;