summary refs log tree commit diff
path: root/gateway/src/schema/VoiceStateUpdate.ts.ts
blob: 4345c2f622bebb9508737591aec93c45b98a3753 (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,
};

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