fix(core): update

This commit is contained in:
2023-10-20 12:50:47 +02:00
parent edadbe6cf5
commit 4dd4980374
8 changed files with 1779 additions and 830 deletions

View File

@@ -36,7 +36,7 @@ export class Timer {
/**
* the current timeout the needs to be canceled when this Timer is stopped
*/
private currentTimeout: NodeJS.Timer;
private currentTimeout: NodeJS.Timeout;
// a deferred triggeted when Timer has completed
private completedDeferred = plugins.smartpromise.defer<void>();