Started work on adding guilds

This commit is contained in:
ION606
2023-03-24 20:32:27 -04:00
parent 0e33185f16
commit e0ffe24eec
8 changed files with 321 additions and 3 deletions
+28
View File
@@ -0,0 +1,28 @@
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;