From da08497a19ab0635a8bd78e499cfc61e54352dcc Mon Sep 17 00:00:00 2001 From: Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> Date: Tue, 18 May 2021 22:04:29 +0200 Subject: :construction: WIP member list + voice --- src/schema/VoiceStateUpdate.ts.ts | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/schema/VoiceStateUpdate.ts.ts (limited to 'src/schema/VoiceStateUpdate.ts.ts') diff --git a/src/schema/VoiceStateUpdate.ts.ts b/src/schema/VoiceStateUpdate.ts.ts new file mode 100644 index 00000000..5e3e35e0 --- /dev/null +++ b/src/schema/VoiceStateUpdate.ts.ts @@ -0,0 +1,13 @@ +export const VoiceStateUpdateSchema = { + guild_id: String, + channel_id: String, + self_mute: Boolean, + self_deaf: Boolean, +}; + +export interface VoiceStateUpdateSchema { + guild_id: string; + channel_id: string; + self_mute: boolean; + self_deaf: boolean; +} -- cgit 1.5.1