mirror of
https://github.com/Zagrios/bs-manager.git
synced 2026-07-03 14:08:25 +02:00
[feature-107] add diffictulties hightlight for playlist maps
This commit is contained in:
@@ -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,
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user