harmony/src/structures/dmChannel.ts

19 lines
528 B
TypeScript
Raw Normal View History

2021-04-04 05:42:15 +00:00
import { Client } from '../client/mod.ts'
2020-10-31 12:33:34 +00:00
import { DMChannelPayload } from '../types/channel.ts'
import { UserPayload } from '../types/user.ts'
import { TextChannel } from './textChannel.ts'
export class DMChannel extends TextChannel {
recipients: UserPayload[]
2020-12-02 12:29:52 +00:00
constructor(client: Client, data: DMChannelPayload) {
super(client, data)
this.recipients = data.recipients
}
2020-12-03 05:28:20 +00:00
readFromData(data: DMChannelPayload): void {
super.readFromData(data)
this.recipients = data.recipients ?? this.recipients
}
}