mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-11 00:53:31 +01:00
Make ServerChannel GuildChannel
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
const ServerChannel = require('./ServerChannel');
|
||||
const GuildChannel = require('./GuildChannel');
|
||||
const TextChannelDataStore = require('./datastore/TextChannelDataStore');
|
||||
const TextBasedChannel = require('./interface/TextBasedChannel');
|
||||
|
||||
/**
|
||||
* Represents a Server Text Channel on Discord.
|
||||
*/
|
||||
class TextChannel extends ServerChannel {
|
||||
class TextChannel extends GuildChannel {
|
||||
|
||||
constructor(guild, data) {
|
||||
super(guild, data);
|
||||
|
||||
Reference in New Issue
Block a user