blob: b4084bd7bfd38db311943c5a4c598aa83ab42a99 (
plain)
1
2
3
4
5
6
7
8
9
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;
}
|