diff options
author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2022-01-01 17:03:48 -0500 |
---|---|---|
committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2022-01-01 17:03:48 -0500 |
commit | 342b01c7f51dbe8beef1d3deb37822080ed6097f (patch) | |
tree | 499b1f0ef1a8870e7abe61beba5fc1be9469e363 /src/lib | |
parent | c24dfae07747c71e1c1806b12bf0f0bcd3dd60dd (diff) | |
download | tanzanite-342b01c7f51dbe8beef1d3deb37822080ed6097f.tar.gz tanzanite-342b01c7f51dbe8beef1d3deb37822080ed6097f.tar.bz2 tanzanite-342b01c7f51dbe8beef1d3deb37822080ed6097f.zip |
a few things
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/common/typings/BushInspectOptions.ts (renamed from src/lib/common/typings/BushInspectOptions.d.ts) | 0 | ||||
-rw-r--r-- | src/lib/common/typings/CodeBlockLang.ts (renamed from src/lib/common/typings/CodeBlockLang.d.ts) | 0 | ||||
-rw-r--r-- | src/lib/extensions/discord-akairo/BushCommand.ts | 4 |
3 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/common/typings/BushInspectOptions.d.ts b/src/lib/common/typings/BushInspectOptions.ts index 38c70b1..38c70b1 100644 --- a/src/lib/common/typings/BushInspectOptions.d.ts +++ b/src/lib/common/typings/BushInspectOptions.ts diff --git a/src/lib/common/typings/CodeBlockLang.d.ts b/src/lib/common/typings/CodeBlockLang.ts index 5a1aeba..5a1aeba 100644 --- a/src/lib/common/typings/CodeBlockLang.d.ts +++ b/src/lib/common/typings/CodeBlockLang.ts diff --git a/src/lib/extensions/discord-akairo/BushCommand.ts b/src/lib/extensions/discord-akairo/BushCommand.ts index c37a55f..782fae5 100644 --- a/src/lib/extensions/discord-akairo/BushCommand.ts +++ b/src/lib/extensions/discord-akairo/BushCommand.ts @@ -510,13 +510,13 @@ export interface BushCommand extends Command { * @param message - Message that triggered the command. * @param args - Evaluated arguments. */ - exec<R, A>(message: BushMessage, args: A): R; + exec(message: BushMessage, args: any): any; /** * Executes the command. * @param message - Message that triggered the command. * @param args - Evaluated arguments. */ - exec<R, A>(message: BushMessage | BushSlashMessage, args: A): R; + exec(message: BushMessage | BushSlashMessage, args: any): any; } type SlashOptionKeys = |