album_songsaleboard.d.ts 293 字节
Newer Older
A
a632079 已提交
1 2 3 4 5 6 7
import { RequestBaseConfig } from './base'

export interface AlbumSongSaleBoardRequestConfig extends RequestBaseConfig {
  albumType: 0 | 1 // 0 为数字专辑,1 为数字单曲
  type: 'daily' | 'week' | 'year' | 'total'
  year?: string // 年份,默认本年。 type 为 year 时有效
}