diff options
Diffstat (limited to 'dist/models/VoiceState.d.ts')
-rw-r--r-- | dist/models/VoiceState.d.ts | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/dist/models/VoiceState.d.ts b/dist/models/VoiceState.d.ts new file mode 100644 index 00000000..607d5509 --- /dev/null +++ b/dist/models/VoiceState.d.ts @@ -0,0 +1,13 @@ +export interface VoiceState { + guild_id?: bigint; + channel_id: bigint; + user_id: bigint; + session_id: string; + deaf: boolean; + mute: boolean; + self_deaf: boolean; + self_mute: boolean; + self_stream?: boolean; + self_video: boolean; + suppress: boolean; +} |