import type { BushClient, BushGuild, BushGuildMember, BushGuildTextBasedChannel, BushTextBasedChannel, BushUser } from '#lib'; import type { APIInteractionGuildMember } from 'discord-api-types/v10'; import { ButtonInteraction, type CacheType, type CacheTypeReducer } from 'discord.js'; import type { RawMessageButtonInteractionData } from 'discord.js/typings/rawDataTypes'; /** * Represents a button interaction. */ export class BushButtonInteraction extends ButtonInteraction { public declare member: CacheTypeReducer; public declare user: BushUser; public constructor(client: BushClient, data: RawMessageButtonInteractionData) { super(client, data); } } export interface BushButtonInteraction extends ButtonInteraction { get channel(): CacheTypeReducer< Cached, BushGuildTextBasedChannel | null, BushGuildTextBasedChannel | null, BushGuildTextBasedChannel | null, BushTextBasedChannel | null >; get guild(): CacheTypeReducer; inGuild(): this is BushButtonInteraction<'raw' | 'cached'>; inCachedGuild(): this is BushButtonInteraction<'cached'>; inRawGuild(): this is BushButtonInteraction<'raw'>; }