mirror of
https://github.com/danbulant/discord.js
synced 2026-05-27 22:11:53 +00:00
docs(GuildEmoji): add @ name to requiresColons and managed properties
This commit is contained in:
parent
8da141637c
commit
97c196ca6a
1 changed files with 2 additions and 0 deletions
|
|
@ -29,12 +29,14 @@ class GuildEmoji extends Emoji {
|
|||
/**
|
||||
* Whether or not this emoji requires colons surrounding it
|
||||
* @type {boolean}
|
||||
* @name GuildEmoji#requiresColons
|
||||
*/
|
||||
if (typeof data.require_colons !== 'undefined') this.requiresColons = data.require_colons;
|
||||
|
||||
/**
|
||||
* Whether this emoji is managed by an external service
|
||||
* @type {boolean}
|
||||
* @name GuildEmoji#managed
|
||||
*/
|
||||
if (typeof data.managed !== 'undefined') this.managed = data.managed;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue