discord.js-selfbot-v13/src/structures/DirectoryChannel.js

20 lines
341 B
JavaScript
Raw Normal View History

2022-05-14 08:06:15 +00:00
'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;