summary refs log tree commit diff
path: root/util/src/schemas/EmojiCreateSchema.ts
diff options
context:
space:
mode:
Diffstat (limited to 'util/src/schemas/EmojiCreateSchema.ts')
-rw-r--r--util/src/schemas/EmojiCreateSchema.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/util/src/schemas/EmojiCreateSchema.ts b/util/src/schemas/EmojiCreateSchema.ts
new file mode 100644

index 00000000..d50c419c --- /dev/null +++ b/util/src/schemas/EmojiCreateSchema.ts
@@ -0,0 +1,7 @@ + +export interface EmojiCreateSchema { + name?: string; + image: string; + require_colons?: boolean | null; + roles?: string[]; +}