aboutsummaryrefslogtreecommitdiff
path: root/src/lib/extensions/BushTaskHandler.ts
blob: c76dbfb5e941753366953fa4d4652bbd57239a4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import { AkairoHandlerOptions, TaskHandler } from 'discord-akairo';
import { BushClient } from './BushClient';

// eslint-disable-next-line @typescript-eslint/no-empty-interface
export interface BushTaskHandlerOptions extends AkairoHandlerOptions {}

export class BushTaskHandler extends TaskHandler {
	public constructor(client: BushClient, options: BushTaskHandlerOptions) {
		super(client, options);
		this.client;
	}
	declare client: BushClient;
}