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

22 lines
305 B
TypeScript

import artist from './artist'
const albumInfo: AlbumInfo = {
image: '',
tracks: []
}
const album: Album = {
artist,
id: 0,
artist_id: 0,
name: '',
cover: '',
playCount: 0,
length: 0,
fmtLength: '00:00',
songs: [],
is_compilation: false,
info: albumInfo
}
export default album