diff options
author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2022-02-25 23:20:58 -0500 |
---|---|---|
committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2022-02-25 23:20:58 -0500 |
commit | 7057cebb3c37634cfa1468e1f49ce30a890681b6 (patch) | |
tree | 0a2ab2c335db439747134a07cbe7982d76f5d0f4 /src/lib/extensions/discord-akairo | |
parent | 866cd2c23eaa3918d01806556ea71f6c7b378ca7 (diff) | |
download | tanzanite-7057cebb3c37634cfa1468e1f49ce30a890681b6.tar.gz tanzanite-7057cebb3c37634cfa1468e1f49ce30a890681b6.tar.bz2 tanzanite-7057cebb3c37634cfa1468e1f49ce30a890681b6.zip |
chore: update dependencies and fix breaking changes
Diffstat (limited to 'src/lib/extensions/discord-akairo')
-rw-r--r-- | src/lib/extensions/discord-akairo/BushClient.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/extensions/discord-akairo/BushClient.ts b/src/lib/extensions/discord-akairo/BushClient.ts index 266680a..fa6dc53 100644 --- a/src/lib/extensions/discord-akairo/BushClient.ts +++ b/src/lib/extensions/discord-akairo/BushClient.ts @@ -110,7 +110,6 @@ const __dirname = path.dirname(fileURLToPath(import.meta.url)); */ export class BushClient<Ready extends boolean = boolean> extends AkairoClient<Ready> { public declare channels: BushChannelManager; - public declare readonly emojis: BushBaseGuildEmojiManager; public declare guilds: BushGuildManager; public declare user: If<Ready, BushClientUser>; public declare users: BushUserManager; @@ -499,6 +498,8 @@ export class BushClient<Ready extends boolean = boolean> extends AkairoClient<Re } export interface BushClient extends EventEmitter, PatchedElements { + get emojis(): BushBaseGuildEmojiManager; + on<K extends keyof BushClientEvents>(event: K, listener: (...args: BushClientEvents[K]) => Awaitable<void>): this; // on<S extends string | symbol>(event: Exclude<S, keyof BushClientEvents>, listener: (...args: any[]) => Awaitable<void>): this; |