diff --git a/src/client/websocket/packets/handlers/MessageUpdate.js b/src/client/websocket/packets/handlers/MessageUpdate.js index 0439d8f7d..f8f46be78 100644 --- a/src/client/websocket/packets/handlers/MessageUpdate.js +++ b/src/client/websocket/packets/handlers/MessageUpdate.js @@ -11,3 +11,10 @@ class MessageUpdateHandler extends AbstractHandler { } module.exports = MessageUpdateHandler; + +/** + * Emitted whenever a message is updated - e.g. embed or content change. + * @event Client#messageUpdate + * @param {Message} oldMessage The message before the update + * @param {Message} newMessage The message after the update + */ diff --git a/src/structures/VoiceChannel.js b/src/structures/VoiceChannel.js index 9c6356f68..b2d6d4f48 100644 --- a/src/structures/VoiceChannel.js +++ b/src/structures/VoiceChannel.js @@ -13,6 +13,7 @@ class VoiceChannel extends GuildChannel { /** * The members in this voice channel * @type {Collection} + * @name VoiceChannel#members */ Object.defineProperty(this, 'members', { value: new Collection() }); }