mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 16:13:31 +01:00
fix(Typing): change NodeJS.Timer into NodeJS.Timeout (#4755)
This commit is contained in:
committed by
GitHub
parent
b48b782c87
commit
405b487dc3
@@ -121,7 +121,7 @@ class WebSocketShard extends EventEmitter {
|
||||
/**
|
||||
* The HELLO timeout
|
||||
* @name WebSocketShard#helloTimeout
|
||||
* @type {?NodeJS.Timer}
|
||||
* @type {?NodeJS.Timeout}
|
||||
* @private
|
||||
*/
|
||||
Object.defineProperty(this, 'helloTimeout', { value: undefined, writable: true });
|
||||
@@ -145,7 +145,7 @@ class WebSocketShard extends EventEmitter {
|
||||
/**
|
||||
* The ready timeout
|
||||
* @name WebSocketShard#readyTimeout
|
||||
* @type {?NodeJS.Timer}
|
||||
* @type {?NodeJS.Timeout}
|
||||
* @private
|
||||
*/
|
||||
Object.defineProperty(this, 'readyTimeout', { value: undefined, writable: true });
|
||||
|
||||
Reference in New Issue
Block a user