diff options
Diffstat (limited to 'src/lib/extensions/discord.js/BushButtonInteraction.ts')
-rw-r--r-- | src/lib/extensions/discord.js/BushButtonInteraction.ts | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/lib/extensions/discord.js/BushButtonInteraction.ts b/src/lib/extensions/discord.js/BushButtonInteraction.ts new file mode 100644 index 0000000..3a54f61 --- /dev/null +++ b/src/lib/extensions/discord.js/BushButtonInteraction.ts @@ -0,0 +1,19 @@ +import { APIInteractionGuildMember } from 'discord-api-types/v8'; +import { ButtonInteraction, PartialDMChannel } from 'discord.js'; +import { BushClient } from '../discord-akairo/BushClient'; +import { BushDMChannel } from './BushDMChannel'; +import { BushGuild } from './BushGuild'; +import { BushGuildMember } from './BushGuildMember'; +import { BushNewsChannel } from './BushNewsChannel'; +import { BushTextChannel } from './BushTextChannel'; +import { BushUser } from './BushUser'; + +export class BushButtonInteraction extends ButtonInteraction { + public declare readonly channel: BushTextChannel | BushDMChannel | BushNewsChannel | PartialDMChannel | null; + public declare readonly guild: BushGuild | null; + public declare member: BushGuildMember | APIInteractionGuildMember | null; + public declare user: BushUser; + public constructor(client: BushClient, data: unknown) { + super(client, data); + } +} |