mirror of
https://github.com/ION606/custom_discordjs.git
synced 2026-05-14 22:26:54 +00:00
25 lines
360 B
JavaScript
25 lines
360 B
JavaScript
export default 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;
|
|
} |