mirror of
https://github.com/koel/koel
synced 2025-01-07 18:28:44 +00:00
18 lines
225 B
TypeScript
18 lines
225 B
TypeScript
|
const artistInfo: ArtistInfo = {
|
||
|
image: ''
|
||
|
}
|
||
|
|
||
|
const artist: Artist = {
|
||
|
id: 0,
|
||
|
name: '',
|
||
|
image: '',
|
||
|
playCount: 0,
|
||
|
albums: [],
|
||
|
songs: [],
|
||
|
length: 0,
|
||
|
fmtLength: '0',
|
||
|
info: artistInfo
|
||
|
}
|
||
|
|
||
|
export default artist
|