docs: fix
This commit is contained in:
File diff suppressed because one or more lines are too long
@@ -687,6 +687,17 @@ class VoiceConnection extends EventEmitter {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Represents a connection to a guild's voice server.
|
||||||
|
* ```js
|
||||||
|
* // Obtained using:
|
||||||
|
* client.voice.joinChannel(channel)
|
||||||
|
* .then(connection => connection.createStreamConnection())
|
||||||
|
* .then(connection => {
|
||||||
|
*
|
||||||
|
* });
|
||||||
|
* @extends {VoiceConnection}
|
||||||
|
*/
|
||||||
class StreamConnection extends VoiceConnection {
|
class StreamConnection extends VoiceConnection {
|
||||||
#requestDisconnect = false;
|
#requestDisconnect = false;
|
||||||
constructor(voiceManager, channel, voiceConnection) {
|
constructor(voiceManager, channel, voiceConnection) {
|
||||||
|
|||||||
Reference in New Issue
Block a user