spoti-search/src/interfaces/index.ts

16 lines
225 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[];
export type Albums = Album[];