From fa31e7f8db61efe085f7d8a317e6a8640ebb3f46 Mon Sep 17 00:00:00 2001 From: Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> Date: Thu, 12 Aug 2021 20:18:05 +0200 Subject: :sparkles: gateway --- gateway/src/schema/Emoji.ts | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 gateway/src/schema/Emoji.ts (limited to 'gateway/src/schema/Emoji.ts') diff --git a/gateway/src/schema/Emoji.ts b/gateway/src/schema/Emoji.ts new file mode 100644 index 00000000..413b8359 --- /dev/null +++ b/gateway/src/schema/Emoji.ts @@ -0,0 +1,11 @@ +export const EmojiSchema = { + name: String, // the name of the emoji + $id: String, // the id of the emoji + animated: Boolean, // whether this emoji is animated +}; + +export interface EmojiSchema { + name: string; + id?: string; + animated: Boolean; +} -- cgit 1.5.1