Files
custom_discordjs/structures/guilds/guildEmoji.js
T

28 lines
376 B
JavaScript
Raw Normal View History

2023-03-24 20:32:27 -04:00
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;