discord.js-selfbot-v13/src/structures/DirectoryChannel.js
2022-05-14 15:06:15 +07:00

20 lines
341 B
JavaScript

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