// types.ts export interface Compilation { id: string name: string duration: number tracks?: Track[] description: string color2: string color1: string color3: string } export interface Artist { id: number name: string url: string coverId: string } export interface Track { id: string compilationId: string title: string artistId: number artist?: Artist start: number link: string coverId: string } export interface BoxPosition { x: number y: number z: number } export interface BoxSize { h: number w: number d: number }