b68/packages/bot/src/interfaces/QueueOptions.ts

9 lines
244 B
TypeScript

import { VoiceConnection } from '@discordjs/voice'
import { CommandInteraction, TextChannel } from 'discord.js'
export interface QueueOptions {
interaction: CommandInteraction
textChannel: TextChannel
connection: VoiceConnection
}