mirror of
https://github.com/GiriNeko/YesPlayMusic.git
synced 2025-12-16 05:08:04 +00:00
32 lines
548 B
TypeScript
32 lines
548 B
TypeScript
interface FetchAppleMusicAlbumParams {
|
|
neteaseId: number | string
|
|
}
|
|
|
|
interface FetchAppleMusicAlbumResponse {
|
|
id: number
|
|
neteaseId: number
|
|
name: string
|
|
artistName: string
|
|
editorialVideo: string
|
|
artwork: string
|
|
editorialNote: {
|
|
en_US: string
|
|
zh_CN: string
|
|
}
|
|
}
|
|
|
|
interface FetchAppleMusicArtistParams {
|
|
neteaseId: number | string
|
|
}
|
|
|
|
interface FetchAppleMusicArtistResponse {
|
|
id: number
|
|
neteaseId: number
|
|
editorialVideo: string
|
|
artwork: string
|
|
name: string
|
|
artistBio: {
|
|
en_US: string
|
|
zh_CN: string
|
|
}
|
|
}
|