mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 20:43:04 +00:00
add Folder interface
This commit is contained in:
+8
-1
@@ -14,6 +14,13 @@ interface Track {
|
||||
discnumber?: number;
|
||||
}
|
||||
|
||||
interface Folder {
|
||||
name: string;
|
||||
path: string;
|
||||
trackscount: number;
|
||||
subdircount: number;
|
||||
}
|
||||
|
||||
interface AlbumInfo {
|
||||
album: string;
|
||||
artist: string;
|
||||
@@ -38,4 +45,4 @@ interface Option {
|
||||
critical?: Boolean;
|
||||
}
|
||||
|
||||
export { Track, AlbumInfo, Artist, Option };
|
||||
export { Track, Folder, AlbumInfo, Artist, Option };
|
||||
|
||||
Reference in New Issue
Block a user