diff options
author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-06-20 22:52:50 -0400 |
---|---|---|
committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-06-20 22:52:50 -0400 |
commit | 5c3da90f441c321f55ae735d6002f4da91f2481e (patch) | |
tree | ac6a993595eebe38fd5e7bd79ade4c5ec71be373 /src/lib/extensions/BushCommandUtil.ts | |
parent | 87e77ae8cc69d0d7f1e3d6f614b03c9297e85ab3 (diff) | |
download | tanzanite-5c3da90f441c321f55ae735d6002f4da91f2481e.tar.gz tanzanite-5c3da90f441c321f55ae735d6002f4da91f2481e.tar.bz2 tanzanite-5c3da90f441c321f55ae735d6002f4da91f2481e.zip |
feat(*): aaaaa
Diffstat (limited to 'src/lib/extensions/BushCommandUtil.ts')
-rw-r--r-- | src/lib/extensions/BushCommandUtil.ts | 10 |
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; +} |