Files
artdanj-api/app/Types/ILocalSpotify.ts
2022-04-14 23:55:15 +02:00

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