UNPKG

discord.js-selfbot-v13

Version:

A unofficial discord.js fork for creating selfbots [Based on discord.js v13]

21 lines (17 loc) 364 B
'use strict'; const { Channel } = require('./Channel'); /** * Represents a channel that displays a directory of guilds. * @extends {Channel} */ class DirectoryChannel extends Channel { _patch(data) { super._patch(data); /** * The channel's name * @type {string} */ this.name = data.name; } } module.exports = DirectoryChannel;