10 lines
174 B
TypeScript
10 lines
174 B
TypeScript
|
type GuildConfig = {
|
||
|
id: string,
|
||
|
voiceChannel: string,
|
||
|
textOutput?: string,
|
||
|
}
|
||
|
|
||
|
export type MusicPlayerOptions = {
|
||
|
library: string,
|
||
|
guilds: GuildConfig[]
|
||
|
}
|