mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-15 19:13:31 +01:00
docs(GuildEmoji): add @ name to requiresColons and managed properties
This commit is contained in:
@@ -29,12 +29,14 @@ class GuildEmoji extends Emoji {
|
|||||||
/**
|
/**
|
||||||
* Whether or not this emoji requires colons surrounding it
|
* Whether or not this emoji requires colons surrounding it
|
||||||
* @type {boolean}
|
* @type {boolean}
|
||||||
|
* @name GuildEmoji#requiresColons
|
||||||
*/
|
*/
|
||||||
if (typeof data.require_colons !== 'undefined') this.requiresColons = data.require_colons;
|
if (typeof data.require_colons !== 'undefined') this.requiresColons = data.require_colons;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Whether this emoji is managed by an external service
|
* Whether this emoji is managed by an external service
|
||||||
* @type {boolean}
|
* @type {boolean}
|
||||||
|
* @name GuildEmoji#managed
|
||||||
*/
|
*/
|
||||||
if (typeof data.managed !== 'undefined') this.managed = data.managed;
|
if (typeof data.managed !== 'undefined') this.managed = data.managed;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user