mirror of
https://github.com/ArthurDanjou/artdanj-api.git
synced 2026-01-14 20:19:26 +01:00
24 lines
339 B
TypeScript
24 lines
339 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
|
|
}
|
|
device: {
|
|
name: string
|
|
type: string
|
|
}
|
|
author: string
|
|
duration: number
|
|
image: string
|
|
}
|