koel/resources/assets/js/stubs/artist.ts

18 lines
225 B
TypeScript
Raw Normal View History

2022-04-15 14:24:30 +00:00
const artistInfo: ArtistInfo = {
image: ''
}
const artist: Artist = {
id: 0,
name: '',
image: '',
playCount: 0,
albums: [],
songs: [],
length: 0,
fmtLength: '0',
info: artistInfo
}
export default artist