mirror of
https://github.com/danbulant/discord.js
synced 2026-06-06 16:22:08 +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
|
* 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;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue