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

7 lines
130 B
TypeScript
Raw Normal View History

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