Add stubs for docs

This commit is contained in:
Amish Shah 2018-01-20 00:05:37 +00:00
parent 2b5fc77a67
commit ef02bd2935
No known key found for this signature in database
GPG key ID: 904349C1207D7967
2 changed files with 4 additions and 0 deletions

View file

@ -37,6 +37,8 @@ class VoiceBroadcast extends EventEmitter {
get dispatcher() {
return this.player.dispatcher;
}
play() {} // eslint-disable-line no-empty-function
}
PlayInterface.applyToClass(VoiceBroadcast);

View file

@ -437,6 +437,8 @@ class VoiceConnection extends EventEmitter {
this.receivers.push(receiver);
return receiver;
}
play() {} // eslint-disable-line no-empty-function
}
PlayInterface.applyToClass(VoiceConnection);