From 645d49c07bb13491bcc96f8d335def731f55480b Mon Sep 17 00:00:00 2001 From: Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> Date: Mon, 1 Feb 2021 21:47:16 +0100 Subject: :sparkles: models --- src/models/Emoji.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/models/Emoji.ts (limited to 'src/models/Emoji.ts') diff --git a/src/models/Emoji.ts b/src/models/Emoji.ts new file mode 100644 index 00000000..1facc252 --- /dev/null +++ b/src/models/Emoji.ts @@ -0,0 +1,12 @@ +export interface Emoji { + allNamesString: string; // e.g. :thonk: + animated: boolean; + available: boolean; + guildId: bigint; + id: bigint; + managed: boolean; + name: string; + require_colons: boolean; + url: string; + roles: []; +} -- cgit 1.5.1