spoti-search/src/interfaces/index.ts

15 lines
195 B
TypeScript

export interface Album {
name: string;
image: string;
id: string;
}
export interface Artist {
name: string;
image: string;
id: string;
albums: Album[];
}
export type Artists = Artist[];