diff options
Diffstat (limited to 'src/util/schemas/EmojiCreateSchema.ts')
-rw-r--r-- | src/util/schemas/EmojiCreateSchema.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/util/schemas/EmojiCreateSchema.ts b/src/util/schemas/EmojiCreateSchema.ts new file mode 100644 index 00000000..d50c419c --- /dev/null +++ b/src/util/schemas/EmojiCreateSchema.ts @@ -0,0 +1,7 @@ + +export interface EmojiCreateSchema { + name?: string; + image: string; + require_colons?: boolean | null; + roles?: string[]; +} |