aboutsummaryrefslogtreecommitdiff
path: root/src/lib/extensions/discord.js/BushThreadChannel.ts
blob: 3c8859c09e4606a4253a7b5c7745baf347ca4228 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import type {
	BushBaseGuildVoiceChannel,
	BushClient,
	BushGuild,
	BushGuildMember,
	BushMessageManager,
	BushNewsChannel,
	BushTextBasedChannel,
	BushTextChannel,
	BushThreadMemberManager
} from '#lib';
import { ThreadChannel, type Collection, type Snowflake } from 'discord.js';
import type { RawThreadChannelData } from 'discord.js/typings/rawDataTypes';

/**
 * Represents a thread channel on Discord.
 */
export class BushThreadChannel extends ThreadChannel {
	public declare guild: BushGuild;
	public declare messages: BushMessageManager;
	public declare members: BushThreadMemberManager;
	public declare readonly client: BushClient;
	public declare readonly guildMembers: Collection<Snowflake, BushGuildMember>;
	public declare readonly parent: BushTextChannel | BushNewsChannel | null;

	public constructor(guild: BushGuild, data?: RawThreadChannelData, client?: BushClient, fromInteraction?: boolean) {
		super(guild, data, client, fromInteraction);
	}
}

export interface BushThreadChannel extends ThreadChannel {
	isText(): this is BushTextBasedChannel;
	isVoice(): this is BushBaseGuildVoiceChannel;
	isThread(): this is BushThreadChannel;
}