summary refs log tree commit diff
path: root/src/util/schemas/EmojiCreateSchema.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/schemas/EmojiCreateSchema.ts')
-rw-r--r--src/util/schemas/EmojiCreateSchema.ts6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/util/schemas/EmojiCreateSchema.ts b/src/util/schemas/EmojiCreateSchema.ts
new file mode 100644
index 00000000..34084713
--- /dev/null
+++ b/src/util/schemas/EmojiCreateSchema.ts
@@ -0,0 +1,6 @@
+export interface EmojiCreateSchema {
+	name?: string;
+	image: string;
+	require_colons?: boolean | null;
+	roles?: string[];
+}