blob: 75b8a5f883b4d42690a334543cc4c6dceda0c96d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import { GuildChannel } from 'discord.js';
import { BushClient } from '../discord-akairo/BushClient';
import { BushGuild } from './BushGuild';
export class BushGuildChannel extends GuildChannel {
public declare readonly client: BushClient;
public declare guild: BushGuild;
constructor(guild: BushGuild, data?: unknown) {
super(guild, data);
}
}
|