音乐封面获取
This commit is contained in:
@@ -26,11 +26,11 @@ export interface MusicLyricModel {
|
||||
}
|
||||
|
||||
export interface MusicPlayerItem {
|
||||
id: number
|
||||
id?: number
|
||||
name: string
|
||||
artist: string
|
||||
album: string
|
||||
artist: string | undefined
|
||||
album: string | undefined
|
||||
url: string
|
||||
cover: string
|
||||
lrc: string | undefined
|
||||
lrc?: string
|
||||
}
|
||||
@@ -7,11 +7,3 @@ export interface SourceImageModel {
|
||||
img: ArrayBuffer // 图片二进制数据
|
||||
created_at: Date
|
||||
}
|
||||
|
||||
/**
|
||||
* 图片标签
|
||||
*/
|
||||
export interface ImageLabel {
|
||||
name: string // 标签名称
|
||||
color: string // 标签颜色
|
||||
}
|
||||
Reference in New Issue
Block a user