aboutsummaryrefslogtreecommitdiff
path: root/src/lib/extensions/discord.js/BushNewsChannel.ts
blob: f30de3e935f12bd3fddbb98d2fa24ba46b5ad15d (plain)
1
2
3
4
5
6
7
8
9
import { type BushGuild, type BushGuildMember, type BushMessageManager, type BushThreadManager } from '@lib';
import { NewsChannel, type AllowedThreadTypeForNewsChannel, type Collection, type Snowflake } from 'discord.js';

export class BushNewsChannel extends NewsChannel {
	public declare threads: BushThreadManager<AllowedThreadTypeForNewsChannel>;
	public declare guild: BushGuild;
	public declare messages: BushMessageManager;
	public declare members: Collection<Snowflake, BushGuildMember>;
}