blob: 33ca11fdb3d49187a92fa3dfd8a76b829471f562 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
import { AkairoMessage } from 'discord-akairo';
import { CommandInteraction } from 'discord.js';
import { BushClient } from './BushClient';
import { BushCommandUtil } from './BushCommandUtil';
import { BushGuild } from './BushGuild';
import { BushUser } from './BushUser';
export class BushSlashMessage extends AkairoMessage {
public declare client: BushClient;
public declare util: BushCommandUtil;
public declare guild: BushGuild;
public declare author: BushUser;
public constructor(
client: BushClient,
interaction: CommandInteraction,
{ slash, replied }: { slash?: boolean; replied?: boolean }
) {
super(client, interaction, { slash, replied });
}
}
|