summary refs log tree commit diff
path: root/src/util/schemas/responses/GuildBansResponse.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/schemas/responses/GuildBansResponse.ts')
-rw-r--r--src/util/schemas/responses/GuildBansResponse.ts10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/util/schemas/responses/GuildBansResponse.ts b/src/util/schemas/responses/GuildBansResponse.ts
new file mode 100644
index 00000000..876a4bc4
--- /dev/null
+++ b/src/util/schemas/responses/GuildBansResponse.ts
@@ -0,0 +1,10 @@
+export interface GuildBansResponse {
+	reason: string;
+	user: {
+		username: string;
+		discriminator: string;
+		id: string;
+		avatar: string | null;
+		public_flags: number;
+	};
+}