mirror of
https://github.com/danbulant/discord.js
synced 2026-05-27 14:02:02 +00:00
docs(VoiceStatus): document name -> value, link in VoiceConnection#status (#3500)
This commit is contained in:
parent
91600a6946
commit
18613526bd
2 changed files with 6 additions and 6 deletions
|
|
@ -53,7 +53,7 @@ class VoiceConnection extends EventEmitter {
|
|||
|
||||
/**
|
||||
* The current status of the voice connection
|
||||
* @type {number}
|
||||
* @type {VoiceStatus}
|
||||
*/
|
||||
this.status = Constants.VoiceStatus.AUTHENTICATING;
|
||||
|
||||
|
|
|
|||
|
|
@ -264,11 +264,11 @@ exports.Status = {
|
|||
|
||||
/**
|
||||
* The current status of a voice connection. Here are the available statuses:
|
||||
* * CONNECTED
|
||||
* * CONNECTING
|
||||
* * AUTHENTICATING
|
||||
* * RECONNECTING
|
||||
* * DISCONNECTED
|
||||
* * CONNECTED: 0
|
||||
* * CONNECTING: 1
|
||||
* * AUTHENTICATING: 2
|
||||
* * RECONNECTING: 3
|
||||
* * DISCONNECTED: 4
|
||||
* @typedef {number} VoiceStatus
|
||||
*/
|
||||
exports.VoiceStatus = {
|
||||
|
|
|
|||
Loading…
Reference in a new issue