aboutsummaryrefslogtreecommitdiff
path: root/src/lib/extensions/BushCommandUtil.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/extensions/BushCommandUtil.ts')
-rw-r--r--src/lib/extensions/BushCommandUtil.ts10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/lib/extensions/BushCommandUtil.ts b/src/lib/extensions/BushCommandUtil.ts
new file mode 100644
index 0000000..b4084bd
--- /dev/null
+++ b/src/lib/extensions/BushCommandUtil.ts
@@ -0,0 +1,10 @@
+import { CommandUtil, ParsedComponentData } from 'discord-akairo';
+import { BushCommand } from './BushCommand';
+
+export interface BushParsedComponentData extends ParsedComponentData {
+ command?: BushCommand;
+}
+
+export class BushCommandUtil extends CommandUtil {
+ declare parsed?: BushParsedComponentData;
+}