9 lines
243 B
TypeScript
9 lines
243 B
TypeScript
import { VoiceConnection } from "@discordjs/voice";
|
|
import { CommandInteraction, TextChannel } from "discord.js";
|
|
|
|
export interface QueueOptions {
|
|
interaction: CommandInteraction;
|
|
textChannel: TextChannel;
|
|
connection: VoiceConnection;
|
|
}
|