Files
evilspins/types/types.ts
valere 9e697822e4
All checks were successful
Deploy App / deploy (push) Successful in 1m49s
studio v1
2025-09-20 17:18:29 +02:00

42 lines
576 B
TypeScript

// 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
}