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