summary refs log tree commit diff
path: root/src/Schema/Emoji.ts
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-02-05 21:55:07 +0100
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-02-05 21:55:07 +0100
commit9b7f4e2b66bd978c3903b352ee1811e80848a24a (patch)
tree4f537890f27f44b95d7057e41ae3c32be08a1791 /src/Schema/Emoji.ts
parent:bug: make default options optional (diff)
downloadserver-9b7f4e2b66bd978c3903b352ee1811e80848a24a.tar.xz
Move Models/Schemas to server-util
Diffstat (limited to 'src/Schema/Emoji.ts')
-rw-r--r--src/Schema/Emoji.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/Schema/Emoji.ts b/src/Schema/Emoji.ts
new file mode 100644

index 00000000..ebb9afdd --- /dev/null +++ b/src/Schema/Emoji.ts
@@ -0,0 +1,5 @@ +export const EmojiSchema = { + name: String, // the name of the emoji + id: BigInt, // the id of the emoji + animated: Boolean, // whether this emoji is animated +};