From 1d989094d523afec5f40bed5894bbf838d022395 Mon Sep 17 00:00:00 2001 From: Will Hoskings Date: Tue, 11 Feb 2020 18:23:59 +0000 Subject: [PATCH] Add the Emoji payload type --- structures/emoji.ts | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 structures/emoji.ts diff --git a/structures/emoji.ts b/structures/emoji.ts new file mode 100644 index 000000000..cf8ba3123 --- /dev/null +++ b/structures/emoji.ts @@ -0,0 +1,5 @@ +export interface EmojiPayload { + name: string; + id?: string; + animated?: boolean; +} \ No newline at end of file