blob: ade11ea8e3c12a57ca63703f7c19d3b5d602c71e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import { AkairoMessage } from 'discord-akairo';
import { CommandInteraction } from 'discord.js';
import { BushClient } from './BushClient';
export class BushSlashMessage extends AkairoMessage {
public constructor(
client: BushClient,
interaction: CommandInteraction,
{ slash, replied }: { slash?: boolean; replied?: boolean }
) {
super(client, interaction, { slash, replied });
this.client = client;
this.interaction = interaction;
}
}
|