music-bot/@types/Downloader.d.ts
Navy.gif 822bf608f3 Bunch of updates and fixes
rebuild option in rescan
request command to request songs
music downloader classes
misc fixes
2024-03-27 18:14:37 +02:00

7 lines
130 B
TypeScript

export type DownloaderResult = {
filePath: string,
artist: string,
song: string,
album: string,
ext: string
};