summary refs log tree commit diff
path: root/gateway/src/schema/VoiceStateUpdateSchema.ts
blob: c046600d91187b0944f94534f3560a222bde5c3c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
export const VoiceStateUpdateSchema = {
	$guild_id: String,
	$channel_id: String,
	self_mute: Boolean,
	self_deaf: Boolean,
	$self_video: Boolean,	//required in docs but bots don't always send it
};

export interface VoiceStateUpdateSchema {
	guild_id?: string;
	channel_id?: string;
	self_mute: boolean;
	self_deaf: boolean;
	self_video?: boolean;
}