UNPKG

@freemework/common

Version:

Common library of the Freemework Project.

8 lines (6 loc) 209 B
import { FCancellationToken } from "./f_cancellation_token.js"; export interface FCancellationTokenSource { readonly isCancellationRequested: boolean; readonly token: FCancellationToken; cancel(): void; }