From fa31e7f8db61efe085f7d8a317e6a8640ebb3f46 Mon Sep 17 00:00:00 2001 From: Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> Date: Thu, 12 Aug 2021 20:18:05 +0200 Subject: :sparkles: gateway --- gateway/src/schema/VoiceStateUpdate.ts.ts | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 gateway/src/schema/VoiceStateUpdate.ts.ts (limited to 'gateway/src/schema/VoiceStateUpdate.ts.ts') diff --git a/gateway/src/schema/VoiceStateUpdate.ts.ts b/gateway/src/schema/VoiceStateUpdate.ts.ts new file mode 100644 index 00000000..4345c2f6 --- /dev/null +++ b/gateway/src/schema/VoiceStateUpdate.ts.ts @@ -0,0 +1,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; +} -- cgit 1.5.1