harmony/src/structures/dm.ts

10 lines
300 B
TypeScript
Raw Normal View History

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