mirror of
https://github.com/koel/koel
synced 2024-11-28 23:10:27 +00:00
17 lines
225 B
TypeScript
17 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
|