diff options
Diffstat (limited to 'src/lib/extensions/discord.js/BushStoreChannel.ts')
-rw-r--r-- | src/lib/extensions/discord.js/BushStoreChannel.ts | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/lib/extensions/discord.js/BushStoreChannel.ts b/src/lib/extensions/discord.js/BushStoreChannel.ts new file mode 100644 index 0000000..1a9b855 --- /dev/null +++ b/src/lib/extensions/discord.js/BushStoreChannel.ts @@ -0,0 +1,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; + + constructor(guild: BushGuild, data?: unknown) { + super(guild, data); + } +} |