mirror of
https://github.com/qier222/YesPlayMusic.git
synced 2025-03-01 14:51:11 +08:00
31 lines
482 B
TypeScript
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
|
|
}
|
|
}
|
|
}
|