docs(GuildEmoji): add @ name to requiresColons and managed properties

This commit is contained in:
SpaceEEC
2019-04-13 19:32:43 +02:00
parent 8da141637c
commit 97c196ca6a

View File

@@ -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;