YesPlayMusic/packages/shared/AppleMusic.ts
2022-07-12 23:30:28 +08:00

31 lines
482 B
TypeScript

export interface AppleMusicAlbum {
attributes: {
name: string
artistName: string
editorialVideo: {
motionSquareVideo1x1: {
video: string
}
}
editorialNotes: {
short: string
standard: string
}
}
}
export interface AppleMusicArtist {
attributes: {
name: string
artistBio: string
editorialVideo: {
motionArtistSquare1x1: {
video: string
}
}
artwork: {
url: string
}
}
}