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