music-bot/@types/MusicPlayer.d.ts

10 lines
174 B
TypeScript
Raw Normal View History

2024-03-24 19:56:03 +01:00
type GuildConfig = {
id: string,
voiceChannel: string,
textOutput?: string,
}
export type MusicPlayerOptions = {
library: string,
guilds: GuildConfig[]
}