From 9b7f4e2b66bd978c3903b352ee1811e80848a24a Mon Sep 17 00:00:00 2001 From: Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> Date: Fri, 5 Feb 2021 21:55:07 +0100 Subject: Move Models/Schemas to server-util --- src/Schema/Emoji.ts | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 src/Schema/Emoji.ts (limited to 'src/Schema/Emoji.ts') 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 +}; -- cgit 1.5.1