Files
evilspins/types/types.ts
valere 0c1cf30996
All checks were successful
Deploy App / deploy (push) Successful in 1m18s
first 3D model
2025-09-17 23:39:43 +02:00

29 lines
427 B
TypeScript

// types.ts
export interface Compilation {
id: string
name: string
duration: number
tracks?: Track[]
description: string
colorFrom: string
colorTo: 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
}