summary refs log tree commit diff
path: root/src/util/interfaces/GuildWelcomeScreen.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/interfaces/GuildWelcomeScreen.ts')
-rw-r--r--src/util/interfaces/GuildWelcomeScreen.ts10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/util/interfaces/GuildWelcomeScreen.ts b/src/util/interfaces/GuildWelcomeScreen.ts
new file mode 100644
index 00000000..38b6061b
--- /dev/null
+++ b/src/util/interfaces/GuildWelcomeScreen.ts
@@ -0,0 +1,10 @@
+export interface GuildWelcomeScreen {
+	enabled: boolean;
+	description: string;
+	welcome_channels: {
+		description: string;
+		emoji_id?: string;
+		emoji_name?: string;
+		channel_id: string;
+	}[];
+}