mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-11 09:03:29 +01:00
fix types for snowflakes (#1156)
* fix types for snowflakes * Update TextBasedChannel.js
This commit is contained in:
committed by
Schuyler Cebulskie
parent
0b5eeb08f3
commit
59ff1d99ba
@@ -18,13 +18,13 @@ class ClientVoiceManager {
|
||||
|
||||
/**
|
||||
* A collection mapping connection IDs to the Connection objects
|
||||
* @type {Collection<string, VoiceConnection>}
|
||||
* @type {Collection<Snowflake, VoiceConnection>}
|
||||
*/
|
||||
this.connections = new Collection();
|
||||
|
||||
/**
|
||||
* Pending connection attempts, maps guild ID to VoiceChannel
|
||||
* @type {Collection<string, VoiceChannel>}
|
||||
* @type {Collection<Snowflake, VoiceChannel>}
|
||||
*/
|
||||
this.pending = new Collection();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user