fix: making CancellationTokenSource a class instead of an interface (#6557)

fix: making CancellationToken a class instead of an interface

Signed-off-by: axel7083 <42176370+axel7083@users.noreply.github.com>
This commit is contained in:
axel7083 2024-03-28 14:41:00 +01:00 committed by GitHub
parent 0bd8f73349
commit 55e5fa228f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -778,7 +778,7 @@ declare module '@podman-desktop/api' {
onCancellationRequested: Event<any>;
}
export interface CancellationTokenSource {
export class CancellationTokenSource {
/**
* The cancellation token of this source.
*/