feat: updates

This commit is contained in:
qier222 2022-03-19 17:03:29 +08:00
parent 08abf8229f
commit fb21405bf9
No known key found for this signature in database
GPG key ID: 9C85007ED905F14D
33 changed files with 699 additions and 361 deletions

View file

@ -9,7 +9,7 @@ export enum ArtistApiNames {
export interface FetchArtistParams {
id: number
}
interface FetchArtistResponse {
export interface FetchArtistResponse {
code: number
more: boolean
artist: Artist
@ -34,7 +34,7 @@ export interface FetchArtistAlbumsParams {
limit?: number // default: 50
offset?: number // default: 0
}
interface FetchArtistAlbumsResponse {
export interface FetchArtistAlbumsResponse {
code: number
hotAlbums: Album[]
more: boolean