Browse Source

Merge branch 'hotfix/nodejs-timer' of hostbbq/hostbbq-monitoring into master

tunefish 2 years ago
parent
commit
b4013bc68f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      server/src/timer.class.ts

+ 1 - 1
server/src/timer.class.ts

@@ -14,7 +14,7 @@ export class Timer {
     return Timer.INSTANCE;
     return Timer.INSTANCE;
   }
   }
 
 
-  private intervalHdl?: NodeJS.Timer;
+  private intervalHdl?: NodeJS.Timeout;
   private subscribers: {
   private subscribers: {
     [id: number]: Subscriber;
     [id: number]: Subscriber;
   } = {};
   } = {};