From b84adedf22e1f7b2f4a477684a29e9ae4a06574d Mon Sep 17 00:00:00 2001 From: Jens Stigaard Date: Mon, 5 Aug 2024 22:30:16 +0200 Subject: [PATCH] lol.... Node.js reverted to NodeJS in code file (used as namespace) --- src/modules/connection-tcp.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/connection-tcp.ts b/src/modules/connection-tcp.ts index 91a9f70..f716de3 100644 --- a/src/modules/connection-tcp.ts +++ b/src/modules/connection-tcp.ts @@ -100,7 +100,7 @@ export class ConnectionTCP { protected _isRetrying: boolean = false protected _reconnectionIntervalTimeout: number = 10000 - protected _reconnectionInterval: Node.js.Timeout | null = null + protected _reconnectionInterval: NodeJS.Timeout | null = null // // Timeout for establishing the connection. Should be smaller than the reconnect invterval! // protected _connectTimeoutDuration: number = 5000