blob: 8ce22c000c35e5e84d4b40a46d0686a3fa3bc6bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
import { Collection, Snowflake, StoreChannel } from 'discord.js';
import { BushClient } from '../discord-akairo/BushClient';
import { BushCategoryChannel } from './BushCategoryChannel';
import { BushGuild } from './BushGuild';
import { BushGuildMember } from './BushGuildMember';
export class BushStoreChannel extends StoreChannel {
public declare readonly client: BushClient;
public declare guild: BushGuild;
public declare readonly members: Collection<Snowflake, BushGuildMember>;
public declare readonly parent: BushCategoryChannel | null;
public constructor(guild: BushGuild, data?: unknown) {
super(guild, data);
}
}
|