mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-11 17:13:31 +01:00
feat(VoiceState): add VoiceState#streaming (#3521)
* feat: add VoiceState#streaming * typings: add VoiceState#streaming
This commit is contained in:
@@ -53,6 +53,11 @@ class VoiceState extends Base {
|
||||
* @type {?string}
|
||||
*/
|
||||
this.sessionID = data.session_id;
|
||||
/**
|
||||
* Whether this member is streaming using "Go Live"
|
||||
* @type {boolean}
|
||||
*/
|
||||
this.streaming = data.self_stream || false;
|
||||
/**
|
||||
* The ID of the voice channel that this member is in
|
||||
* @type {?Snowflake}
|
||||
|
||||
Reference in New Issue
Block a user