feat: updates

This commit is contained in:
qier222 2022-07-12 22:42:50 +08:00
parent 222fb02355
commit 47e41dea9b
No known key found for this signature in database
GPG key ID: 9C85007ED905F14D
24 changed files with 380 additions and 130 deletions

View file

@ -0,0 +1,30 @@
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
}
}
}