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

37 lines
600 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[]
}
export type MusicIndexEntry = {
id: number,
artist: string,
title: string,
album?: string,
year?: number,
genre: string[]
file: string,
stats: {
plays: number,
skips: number
}
}
export type MusicQuery = {
title?: string
artist?: string,
keyword?: string,
id?: number
}
export type QueueOrder = {
artist?: string,
title?: string,
id?: number
2024-03-24 19:56:03 +01:00
}