koel/resources/assets/js/stubs/artist.ts
2022-04-15 16:24:30 +02:00

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