Files
artdanj-api/app/Types/ILocalSpotify.ts

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
}