aboutsummaryrefslogtreecommitdiff
path: root/src/lib/extensions/discord.js/BushSelectMenuInteraction.ts
blob: 6b33c2034692c56855eb3775dc289fa09ffa1d6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import type { BushClient, BushGuild, BushGuildMember, BushTextBasedChannels, BushUser } from '#lib';
import type { APIInteractionGuildMember } from 'discord-api-types/v9';
import { SelectMenuInteraction, type CacheType, type CacheTypeReducer } from 'discord.js';
import type { RawMessageSelectMenuInteractionData } from 'discord.js/typings/rawDataTypes';

export class BushSelectMenuInteraction<Cached extends CacheType = CacheType> extends SelectMenuInteraction<Cached> {
	public declare readonly channel: CacheTypeReducer<Cached, BushTextBasedChannels | null>;
	public declare readonly guild: CacheTypeReducer<Cached, BushGuild, null>;
	public declare member: CacheTypeReducer<Cached, BushGuildMember, APIInteractionGuildMember>;
	public declare user: BushUser;

	public constructor(client: BushClient, data: RawMessageSelectMenuInteractionData) {
		super(client, data);
	}
}