mirror of
https://github.com/GiriNeko/YesPlayMusic.git
synced 2025-12-17 05:38:04 +00:00
34 lines
630 B
TypeScript
34 lines
630 B
TypeScript
export interface FetchAppleMusicAlbumParams {
|
|
neteaseId: number | string
|
|
lang?: 'zh-CN' | 'en-US'
|
|
}
|
|
|
|
export interface FetchAppleMusicAlbumResponse {
|
|
id: number
|
|
neteaseId: number
|
|
name: string
|
|
artistName: string
|
|
editorialVideo: string
|
|
artwork: string
|
|
editorialNote: {
|
|
en_US: string
|
|
zh_CN: string
|
|
}
|
|
}
|
|
|
|
export interface FetchAppleMusicArtistParams {
|
|
neteaseId: number | string
|
|
lang?: 'zh-CN' | 'en-US'
|
|
}
|
|
|
|
export interface FetchAppleMusicArtistResponse {
|
|
id: number
|
|
neteaseId: number
|
|
editorialVideo: string
|
|
artwork: string
|
|
name: string
|
|
artistBio: {
|
|
en_US: string
|
|
zh_CN: string
|
|
}
|
|
}
|