aboutsummaryrefslogtreecommitdiff
path: root/src/lib/extensions/discord-akairo/BushInhibitor.ts
blob: c3f999432b3cd460388b8b379eb93dcc7be02dda (plain)
1
2
3
4
5
6
7
8
9
10
11
import { type BushClient, type BushCommand, type BushMessage, type BushSlashMessage } from '#lib';
import { Inhibitor } from 'discord-akairo';

export class BushInhibitor extends Inhibitor {
	public declare client: BushClient;
}

export interface BushInhibitor {
	exec(message: BushMessage, command: BushCommand): any;
	exec(message: BushMessage | BushSlashMessage, command: BushCommand): any;
}