7 lines
130 B
TypeScript
7 lines
130 B
TypeScript
|
export type DownloaderResult = {
|
||
|
filePath: string,
|
||
|
artist: string,
|
||
|
song: string,
|
||
|
album: string,
|
||
|
ext: string
|
||
|
};
|