There was an error while loading. Please reload this page.
1 parent 1c275af commit 54a7fdaCopy full SHA for 54a7fda
2 files changed
src/structures/VoiceState.js
@@ -48,6 +48,11 @@ class VoiceState extends Base {
48
* @type {?boolean}
49
*/
50
this.selfMute = data.self_mute;
51
+ /**
52
+ * Whether this member's camera is enabled
53
+ * @type {boolean}
54
+ */
55
+ this.selfVideo = data.self_video;
56
/**
57
* The session ID of this member's connection
58
* @type {?string}
typings/index.d.ts
@@ -1672,6 +1672,7 @@ declare module 'discord.js' {
1672
public serverMute?: boolean;
1673
public sessionID?: string;
1674
public streaming: boolean;
1675
+ public selfVideo: boolean;
1676
public readonly speaking: boolean | null;
1677
1678
public setDeaf(deaf: boolean, reason?: string): Promise<GuildMember>;
0 commit comments