Explorar el Código

Type NodeJS.Timer got replaced with NodeJS.Timeout in newer TSC versions

Christian Kahlau hace 2 años
padre
commit
6ed855ea31
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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;
   }
 
-  private intervalHdl?: NodeJS.Timer;
+  private intervalHdl?: NodeJS.Timeout;
   private subscribers: {
     [id: number]: Subscriber;
   } = {};