const Action = require('./Action'); class GuildEmojiCreateAction extends Action { handle(guild, createdEmoji) { const client = this.client; const emoji = client.dataManager.newEmoji(createdEmoji, guild); return { emoji, }; } } /** * Emitted whenever a custom emoji is created in a guild * @event Client#emojiCreate * @param {Emoji} emoji The emoji that was created. */ module.exports = GuildEmojiCreateAction;