format wiadomości

This commit is contained in:
Patryk Koreń
2026-01-03 20:58:23 +01:00
parent 765157f754
commit 28b6546c25
10 changed files with 118 additions and 34 deletions

12
src/global.d.ts vendored
View File

@@ -4,7 +4,13 @@ type Command = {
execute: (interaction: ChatInputCommandInteraction<CacheType>) => Promise<void>,
}
type Queue = {
songList: string[],
current: string | null,
type AudioFile = {
url: string
path: string
}
type Queue = {
songList: AudioFile[],
current: AudioFile | null,
}