mirror of
https://github.com/austinried/subtracks.git
synced 2026-02-10 15:02:42 +01:00
now playing header now shows context menu
fixed now playing image gradient
This commit is contained in:
@@ -15,6 +15,7 @@ import {
|
||||
PlaylistWithSongs,
|
||||
SearchResults,
|
||||
Song,
|
||||
StarrableItemType,
|
||||
} from '@app/models/music'
|
||||
import { Store } from '@app/state/store'
|
||||
import { GetAlbumList2Type, StarParams } from '@app/subsonic/params'
|
||||
@@ -65,7 +66,7 @@ export type MusicSlice = {
|
||||
starredSongs: { [id: string]: boolean }
|
||||
starredAlbums: { [id: string]: boolean }
|
||||
starredArtists: { [id: string]: boolean }
|
||||
starItem: (id: string, type: string, unstar?: boolean) => Promise<void>
|
||||
starItem: (id: string, type: StarrableItemType, unstar?: boolean) => Promise<void>
|
||||
|
||||
albumIdCoverArt: { [id: string]: string | undefined }
|
||||
albumIdCoverArtRequests: { [id: string]: Promise<void> }
|
||||
|
||||
@@ -7,6 +7,8 @@ import { Store } from './store'
|
||||
export type TrackExt = Track & {
|
||||
id: string
|
||||
coverArt?: string
|
||||
artistId?: string
|
||||
albumId?: string
|
||||
}
|
||||
|
||||
export type Progress = {
|
||||
|
||||
Reference in New Issue
Block a user