aboutsummaryrefslogtreecommitdiff
path: root/src/lib/extensions/discord-akairo
diff options
context:
space:
mode:
authorIRONM00N <64110067+IRONM00N@users.noreply.github.com>2021-10-27 17:23:36 -0400
committerIRONM00N <64110067+IRONM00N@users.noreply.github.com>2021-10-27 17:23:36 -0400
commit43dadce8b744a43b86cc3febba1046d714cdafcb (patch)
treefb1adc300119a529f6c98be54e92d0226677293e /src/lib/extensions/discord-akairo
parent7ac7fc1bddb9b0e8bf8029bfb784aec3e9f0a6b3 (diff)
downloadtanzanite-43dadce8b744a43b86cc3febba1046d714cdafcb.tar.gz
tanzanite-43dadce8b744a43b86cc3febba1046d714cdafcb.tar.bz2
tanzanite-43dadce8b744a43b86cc3febba1046d714cdafcb.zip
fix breaking changes
Diffstat (limited to 'src/lib/extensions/discord-akairo')
-rw-r--r--src/lib/extensions/discord-akairo/BushClient.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/extensions/discord-akairo/BushClient.ts b/src/lib/extensions/discord-akairo/BushClient.ts
index 4954d8e..c5d05b7 100644
--- a/src/lib/extensions/discord-akairo/BushClient.ts
+++ b/src/lib/extensions/discord-akairo/BushClient.ts
@@ -97,6 +97,7 @@ export type BushApplicationCommandResolvable = BushApplicationCommand | Snowflak
export type BushGuildTextChannelResolvable = BushTextChannel | BushNewsChannel | Snowflake;
export type BushChannelResolvable = BushChannel | Snowflake;
export type BushTextBasedChannels = PartialDMChannel | BushDMChannel | BushTextChannel | BushNewsChannel | BushThreadChannel;
+export type BushGuildTextBasedChannel = Exclude<BushTextBasedChannels, PartialDMChannel | BushDMChannel>;
export interface BushFetchedThreads {
threads: Collection<Snowflake, BushThreadChannel>;
hasMore?: boolean;