mirror of
https://github.com/ArthurDanjou/artdanj-api.git
synced 2026-01-14 12:14:33 +01:00
24 lines
341 B
TypeScript
24 lines
341 B
TypeScript
export interface SpotifyArtist {
|
|
id: string
|
|
name: string
|
|
image: string
|
|
genres: string[]
|
|
popularity: number
|
|
followers: number
|
|
}
|
|
|
|
export interface SpotifyTrack {
|
|
item: {
|
|
name: string
|
|
type: string
|
|
id: string
|
|
}
|
|
author: string
|
|
duration: number
|
|
image: {
|
|
url: string
|
|
width: number
|
|
height: number
|
|
}
|
|
}
|