aboutsummaryrefslogtreecommitdiff
path: root/src/lib/extensions/discord.js/BushBaseGuildTextChannel.ts
blob: 652a50f507cf65f4eb9c4f732b86ba9125018f5a (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
import type {
	BushCategoryChannel,
	BushClient,
	BushGuild,
	BushGuildMember,
	BushMessageManager,
	BushThreadManager
} from '#lib';
import {
	BaseGuildTextChannel,
	type AllowedThreadTypeForNewsChannel,
	type AllowedThreadTypeForTextChannel,
	type Collection,
	type Snowflake
} from 'discord.js';
import type { RawGuildChannelData } from 'discord.js/typings/rawDataTypes';

export class BushBaseGuildTextChannel extends BaseGuildTextChannel {
	public constructor(guild: BushGuild, data?: RawGuildChannelData, client?: BushClient, immediatePatch?: boolean) {
		super(guild, data, client, immediatePatch);
	}
	public declare messages: BushMessageManager;
	public declare threads: BushThreadManager<AllowedThreadTypeForTextChannel | AllowedThreadTypeForNewsChannel>;
	public declare readonly client: BushClient;
	public declare guild: BushGuild;
	public declare readonly members: Collection<Snowflake, BushGuildMember>;
	public declare readonly parent: BushCategoryChannel | null;
}