diff --git a/mod.ts b/mod.ts index 2382784..ae8d04c 100644 --- a/mod.ts +++ b/mod.ts @@ -148,3 +148,4 @@ export type { WebhookPayload } from './src/types/webhook.ts' export * from './src/models/collectors.ts' export { ColorUtil } from './src/utils/colorutil.ts' export type { Colors } from './src/utils/colorutil.ts' +export { StageVoiceChannel } from './src/structures/guildVoiceStageChannel.ts' \ No newline at end of file diff --git a/src/structures/guildVoiceStageChannel.ts b/src/structures/guildVoiceStageChannel.ts new file mode 100644 index 0000000..67aa07a --- /dev/null +++ b/src/structures/guildVoiceStageChannel.ts @@ -0,0 +1,3 @@ +import { VoiceChannel } from './guildVoiceChannel.ts' + +export class StageVoiceChannel extends VoiceChannel { } \ No newline at end of file