wanjingy.github.io / hw8 / frontend / src / app / artist.ts
artist.ts
Raw
export interface Artist{
    name: string,
    popularity: number,
    followers: number,
    link: string,
    artistImgUrl: string,
    albumsImgsUrls: string[]
}