diff options
author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2022-02-21 16:08:38 -0500 |
---|---|---|
committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2022-02-21 16:08:38 -0500 |
commit | 5116ccf230c933c290676d033a5639b3913ee03b (patch) | |
tree | 7ebd8bb012b22c016e8d38d79b551cf43155d4dd /src/lib/extensions/discord.js/BushClientEvents.ts | |
parent | d3464427ea9b08b54a0444795bf4aedab55d3afc (diff) | |
download | tanzanite-5116ccf230c933c290676d033a5639b3913ee03b.tar.gz tanzanite-5116ccf230c933c290676d033a5639b3913ee03b.tar.bz2 tanzanite-5116ccf230c933c290676d033a5639b3913ee03b.zip |
perf: make massban actually work
Diffstat (limited to 'src/lib/extensions/discord.js/BushClientEvents.ts')
-rw-r--r-- | src/lib/extensions/discord.js/BushClientEvents.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/lib/extensions/discord.js/BushClientEvents.ts b/src/lib/extensions/discord.js/BushClientEvents.ts index 50b198d..e6cf93f 100644 --- a/src/lib/extensions/discord.js/BushClientEvents.ts +++ b/src/lib/extensions/discord.js/BushClientEvents.ts @@ -1,4 +1,5 @@ import type { + BanResponse, BushApplicationCommand, BushClient, BushDMChannel, @@ -264,6 +265,12 @@ export interface BushClientEvents extends AkairoClientEvents { channelsSuccessMap: Collection<Snowflake, boolean>, all?: boolean ]; + massBan: [ + moderator: BushGuildMember, + guild: BushGuild, + reason: string | undefined, + results: Collection<Snowflake, BanResponse> + ]; } type Setting = GuildSettings | 'enabledFeatures' | 'blacklistedChannels' | 'blacklistedUsers' | 'disabledCommands'; |