Lightcord/DiscordJS/src/structures/TextChannel.ts

14 lines
417 B
TypeScript
Raw Normal View History

2020-06-26 21:05:09 +02:00
import { applyMixins } from "../util/util";
import GuildChannel from "./GuildChannel";
import { DiscordChannel } from "../util/DiscordToModules";
import { ChannelTypes } from "../util/Constants";
export class TextChannel extends GuildChannel/* implements TextBasedChannel*/ {
constructor(data:DiscordChannel){
super(data)
}
get type(): ChannelTypes.TEXT{
return ChannelTypes.TEXT
}
}