blob: f730828e50cfc146ee6764e9d771dd0587e15a8a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import { Collection, Snowflake, StoreChannel } from 'discord.js';
import { BushCategoryChannel, BushClient, BushGuild, BushGuildMember } from '..';
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);
}
}
|