fix: correct property names in Track interface for consistency
Some checks failed
Frontend CI / lint (push) Failing after 5m3s
Frontend CI / build (push) Has been skipped

This commit is contained in:
JSC
2025-07-18 22:38:51 +02:00
parent a29ad0873e
commit cbb7febd26

View File

@@ -8,7 +8,8 @@ export interface Track {
artist?: string artist?: string
duration: number duration: number
thumbnail?: string thumbnail?: string
url: string file_url: string
service_url?: string
} }
export type PlayMode = 'continuous' | 'loop-playlist' | 'loop-one' | 'random' | 'single' export type PlayMode = 'continuous' | 'loop-playlist' | 'loop-one' | 'random' | 'single'