mirror of
https://github.com/ION606/custom_discordjs.git
synced 2026-05-14 22:26:54 +00:00
28 lines
376 B
JavaScript
28 lines
376 B
JavaScript
|
|
class GuildEmoji {
|
||
|
|
/** @type {Number} */
|
||
|
|
version;
|
||
|
|
|
||
|
|
/** @type {Object[]} */
|
||
|
|
roles;
|
||
|
|
|
||
|
|
/** @type {Boolean} */
|
||
|
|
require_colons;
|
||
|
|
|
||
|
|
/** @type {String} */
|
||
|
|
name;
|
||
|
|
|
||
|
|
/** @type {Boolean} */
|
||
|
|
managed;
|
||
|
|
|
||
|
|
/** @type {String} */
|
||
|
|
id;
|
||
|
|
|
||
|
|
/** @type {Boolean} */
|
||
|
|
available;
|
||
|
|
|
||
|
|
/** @type {Boolean} */
|
||
|
|
animated;
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
module.exports = GuildEmoji;
|