Documentation

This commit is contained in:
Amish Shah
2016-08-23 21:16:49 +01:00
parent d0a76f3f38
commit f9a553a7f0
5 changed files with 76 additions and 5 deletions

View File

@@ -130,6 +130,15 @@ class Client extends EventEmitter {
return this.rest.methods.loginToken(email);
}
/**
* Returns a Collection, mapping Guild ID to Voice Connections.
* @readonly
* @type {Collection<String, VoiceConnection>}
*/
get voiceConnections() {
return this.voice.connections;
}
}
module.exports = Client;