aboutsummaryrefslogtreecommitdiff
path: root/src/lib/extensions/discord.js/BushCommandInteraction.ts
diff options
context:
space:
mode:
authorIRONM00N <64110067+IRONM00N@users.noreply.github.com>2021-07-01 20:37:34 -0400
committerIRONM00N <64110067+IRONM00N@users.noreply.github.com>2021-07-01 20:37:34 -0400
commit2b06a59c57fdf7aad217d63db875cdb3d8868036 (patch)
tree76fc9ff0f4217c5c4c3a37291dbb8e589da25bcc /src/lib/extensions/discord.js/BushCommandInteraction.ts
parentad26ae36bc57ad4fb77c6c3c3e86eb3303f09110 (diff)
downloadtanzanite-2b06a59c57fdf7aad217d63db875cdb3d8868036.tar.gz
tanzanite-2b06a59c57fdf7aad217d63db875cdb3d8868036.tar.bz2
tanzanite-2b06a59c57fdf7aad217d63db875cdb3d8868036.zip
don't judge me part 2 & fix esbuild with eval command
Diffstat (limited to 'src/lib/extensions/discord.js/BushCommandInteraction.ts')
-rw-r--r--src/lib/extensions/discord.js/BushCommandInteraction.ts37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/lib/extensions/discord.js/BushCommandInteraction.ts b/src/lib/extensions/discord.js/BushCommandInteraction.ts
new file mode 100644
index 0000000..84c0707
--- /dev/null
+++ b/src/lib/extensions/discord.js/BushCommandInteraction.ts
@@ -0,0 +1,37 @@
+import { APIInteractionGuildMember } from 'discord-api-types/v8';
+import {
+ ApplicationCommand,
+ CommandInteraction,
+ DMChannel,
+ Invite,
+ NewsChannel,
+ PartialDMChannel,
+ Snowflake,
+ TextChannel
+} from 'discord.js';
+import { BushClient } from '../discord-akairo/BushClient';
+import { BushApplicationCommand } from './BushApplicationCommand';
+import { BushGuild } from './BushGuild';
+import { BushGuildChannel } from './BushGuildChannel';
+import { BushGuildEmoji } from './BushGuildEmoji';
+import { BushGuildMember } from './BushGuildMember';
+import { BushRole } from './BushRole';
+import { BushUser } from './BushUser';
+
+export type BushGuildResolvable =
+ | BushGuild
+ | BushGuildChannel
+ | BushGuildMember
+ | BushGuildEmoji
+ | Invite
+ | BushRole
+ | Snowflake;
+
+export class BushCommandInteraction extends CommandInteraction {
+ public declare readonly client: BushClient;
+ public declare readonly command: BushApplicationCommand | ApplicationCommand<{ guild: BushGuildResolvable }> | null;
+ public declare readonly channel: TextChannel | DMChannel | NewsChannel | PartialDMChannel | null;
+ public declare readonly guild: BushGuild | null;
+ public declare member: BushGuildMember | APIInteractionGuildMember | null;
+ public declare user: BushUser;
+}