UNPKG

discord.js-selfbot-v13-proxy

Version:

A unofficial discord.js-selfbot-v13 fork for creating selfbots with proxy [Based on discord.js v13]

21 lines (17 loc) 601 B
'use strict'; const Action = require('./Action'); const { Events } = require('../../util/Constants'); class WebhooksUpdate extends Action { handle(data) { const client = this.client; const channel = client.channels.cache.get(data.channel_id); /** * Emitted whenever a channel has its webhooks changed. * @event Client#webhookUpdate * @param {TextChannel|NewsChannel|VoiceChannel|StageChannel|ForumChannel} channel * The channel that had a webhook update */ if (channel) client.emit(Events.WEBHOOKS_UPDATE, channel); } } module.exports = WebhooksUpdate;