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; }