harmony/src/structures/guildnewsChannel.ts

10 lines
289 B
TypeScript

import { Client } from '../models/client.ts'
import { Channel } from './channel.ts'
import { GuildNewsChannelPayload } from '../types/channelTypes.ts'
export class NewsChannel extends Channel {
constructor (client: Client, data: GuildNewsChannelPayload) {
super(client, data)
}
}