discord.js-selfbot-v13/src/structures/DirectoryChannel.js
2023-01-08 14:39:47 +07:00

21 lines
364 B
JavaScript

'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;