blob: ed6b91d8c21824af18cbff124c8e0afd96ca55e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import { type BushClient } from '#lib';
import { TaskHandler, type AkairoHandlerOptions } from 'discord-akairo';
export type BushTaskHandlerOptions = AkairoHandlerOptions;
export class BushTaskHandler extends TaskHandler {
public declare client: BushClient;
public constructor(client: BushClient, options: BushTaskHandlerOptions) {
super(client, options);
}
}
|