Files
2024-10-26 20:33:18 +08:00

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;
}