[feature-107] add diffictulties hightlight for playlist maps

This commit is contained in:
MathieuG-P
2024-06-22 19:40:49 +02:00
parent 33be4de2ff
commit 3427cae437
15 changed files with 277 additions and 181 deletions
@@ -12,11 +12,13 @@ export interface BPList<SongType = PlaylistSong> {
}
export interface PlaylistSong {
key: string;
hash: string;
songName: string;
uploader?: string;
key?: string;
hash?: string;
songName?: string;
songDetails?: SongDetails;
difficulties?: BPListDifficulty[];
levelAuthorName?: string;
levelid?: string;
}
export interface DownloadPlaylistProgressionData {
@@ -28,3 +30,8 @@ export interface DownloadPlaylistProgressionData {
export interface CustomDataBPList {
syncURL?: string;
}
export interface BPListDifficulty {
name: string,
characteristic: string,
}