This commit is contained in:
DjDeveloperr 2021-04-03 11:06:03 +05:30
parent 582b296393
commit 0dfbcd7a7b
2 changed files with 4 additions and 0 deletions

1
mod.ts
View file

@ -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'

View file

@ -0,0 +1,3 @@
import { VoiceChannel } from './guildVoiceChannel.ts'
export class StageVoiceChannel extends VoiceChannel { }