mirror of
https://github.com/swc-project/swc.git
synced 2024-12-21 04:32:01 +03:00
15 lines
466 B
TypeScript
15 lines
466 B
TypeScript
|
// Loaded from https://deno.land/x/discordeno@11.0.0-rc.2/src/types/voice/update_voice_state.ts
|
||
|
|
||
|
|
||
|
/** https://discord.com/developers/docs/topics/gateway#update-voice-state */
|
||
|
export interface UpdateVoiceState {
|
||
|
/** id of the guild */
|
||
|
guildId: string;
|
||
|
/** id of the voice channel client wants to join (null if disconnecting) */
|
||
|
channelId: string | null;
|
||
|
/** Is the client muted */
|
||
|
selfMute: boolean;
|
||
|
/** Is the client deafened */
|
||
|
selfDeaf: boolean;
|
||
|
}
|