24 lines
380 B
TypeScript
Raw Normal View History

2022-04-16 21:14:03 +08:00
export enum AlbumApiNames {
FETCH_ALBUM = 'fetchAlbum',
}
// 专辑详情
export interface FetchAlbumParams {
id: number
}
export interface FetchAlbumResponse {
code: number
resourceState: boolean
album: Album
songs: Track[]
description: string
}
export interface LikeAAlbumParams {
t: 1 | 2
id: number
}
export interface LikeAAlbumResponse {
code: number
}