Files

25 lines
360 B
JavaScript
Raw Permalink Normal View History

export default class GuildEmoji {
2023-03-24 20:32:27 -04:00
/** @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;
}