voice: add documentation to VoiceBroadcast

This commit is contained in:
Amish Shah
2019-03-23 12:22:55 +00:00
parent 9b2bf03ff6
commit 3df56540e2
2 changed files with 10 additions and 0 deletions

View File

@@ -27,6 +27,10 @@ class VoiceBroadcast extends EventEmitter {
* @type {Client}
*/
this.client = client;
/**
* The dispatchers playing this broadcast
* @type {Set<StreamDispatcher>}
*/
this.dispatchers = new DispatcherSet(this);
this.player = new BroadcastAudioPlayer(this);
}