feat: update loading skeleton and playlist handling for main playlists
Some checks failed
Frontend CI / lint (push) Failing after 17s
Frontend CI / build (push) Has been skipped

This commit is contained in:
JSC
2025-08-16 01:21:34 +02:00
parent 7b01ace746
commit f6117ededd
13 changed files with 141 additions and 55 deletions

View File

@@ -2,7 +2,7 @@
* Simple event emitter for cross-component communication
*/
type EventHandler = (...args: unknown[]) => void
export type EventHandler = (...args: unknown[]) => void
class EventEmitter {
private events: Map<string, EventHandler[]> = new Map()