This commit is contained in:
@@ -18,16 +18,18 @@ export interface Artist {
|
||||
}
|
||||
|
||||
export interface Track {
|
||||
id: string
|
||||
id: number
|
||||
compilationId: string
|
||||
title: string
|
||||
artistId: number
|
||||
artist?: Artist
|
||||
artist: Artist
|
||||
start: number
|
||||
link: string
|
||||
url: string
|
||||
coverId: string
|
||||
}
|
||||
|
||||
// pour une v2
|
||||
export type BoxState = 'hide' | 'list' | 'selected'
|
||||
|
||||
export interface BoxPosition {
|
||||
x: number
|
||||
y: number
|
||||
|
||||
Reference in New Issue
Block a user