summary refs log tree commit diff
path: root/src/models/Emoji.ts
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-02-01 21:47:16 +0100
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-02-01 21:47:16 +0100
commit645d49c07bb13491bcc96f8d335def731f55480b (patch)
tree7efb5d26ecd1338ba03bef1bf31b2bcf13dabb15 /src/models/Emoji.ts
parent:sparkles: added Date + Email Body Type (diff)
downloadserver-645d49c07bb13491bcc96f8d335def731f55480b.tar.xz
:sparkles: models
Diffstat (limited to '')
-rw-r--r--src/models/Emoji.ts12
1 files changed, 12 insertions, 0 deletions
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: []; +}