diff options
author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-08-14 21:25:48 -0400 |
---|---|---|
committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-08-14 21:25:48 -0400 |
commit | e0c0bb2eeb470a926782588c4d082ea9a3bfd669 (patch) | |
tree | 86c4e110f17758dcb5745594ca79490747431aa2 /src/lib/extensions/discord.js/BushCommandInteraction.ts | |
parent | 5bdf035e5c7abc3c2fba9d78a95e093151dc4673 (diff) | |
download | tanzanite-e0c0bb2eeb470a926782588c4d082ea9a3bfd669.tar.gz tanzanite-e0c0bb2eeb470a926782588c4d082ea9a3bfd669.tar.bz2 tanzanite-e0c0bb2eeb470a926782588c4d082ea9a3bfd669.zip |
fix discord.js changes
Diffstat (limited to 'src/lib/extensions/discord.js/BushCommandInteraction.ts')
-rw-r--r-- | src/lib/extensions/discord.js/BushCommandInteraction.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/extensions/discord.js/BushCommandInteraction.ts b/src/lib/extensions/discord.js/BushCommandInteraction.ts index 9e30f79..56cdb75 100644 --- a/src/lib/extensions/discord.js/BushCommandInteraction.ts +++ b/src/lib/extensions/discord.js/BushCommandInteraction.ts @@ -1,5 +1,5 @@ import { APIInteractionGuildMember } from 'discord-api-types/v9'; -import { ApplicationCommand, CommandInteraction, Invite, Snowflake } from 'discord.js'; +import { CommandInteraction, Invite, Snowflake } from 'discord.js'; import { RawCommandInteractionData } from 'discord.js/typings/rawDataTypes'; import { BushClient, BushTextBasedChannels } from '../discord-akairo/BushClient'; import { BushApplicationCommand } from './BushApplicationCommand'; @@ -24,7 +24,7 @@ export class BushCommandInteraction extends CommandInteraction { super(client, data); } public declare readonly client: BushClient; - public declare readonly command: BushApplicationCommand | ApplicationCommand<{ guild: BushGuildResolvable }> | null; + public declare readonly command: BushApplicationCommand | BushApplicationCommand<{ guild: BushGuildResolvable }> | null; public declare readonly channel: BushTextBasedChannels | null; public declare readonly guild: BushGuild | null; public declare member: BushGuildMember | APIInteractionGuildMember | null; |