update track interface to follow server updates

+ add search debounce time
This commit is contained in:
geoffrey45
2022-09-11 20:37:29 +03:00
parent 47fc7fd705
commit f5b6791d4b
14 changed files with 50 additions and 43 deletions
+5 -4
View File
@@ -4,20 +4,21 @@ export interface Track {
trackid: string;
title: string;
album?: string;
artists: string[];
artist: string[];
albumartist?: string;
albumhash?: string;
folder?: string;
filepath?: string;
length?: number;
duration?: number;
bitrate?: number;
genre?: string;
image: string;
tracknumber: number;
discnumber: number;
track: string;
disc: string;
index: number;
hash: string;
copyright?: string;
filetype: string
}
export interface Folder {