mirror of
https://github.com/koel/koel
synced 2025-01-04 08:48:48 +00:00
25 lines
447 B
TypeScript
25 lines
447 B
TypeScript
import album from './album'
|
|
import artist from './artist'
|
|
|
|
const song: Song = {
|
|
id: '00000000000000000000000000000000',
|
|
album,
|
|
artist,
|
|
artist_id: artist.id,
|
|
track: 1,
|
|
disc: 0,
|
|
album_id: album.id,
|
|
title: '',
|
|
length: 0,
|
|
fmtLength: '00:00',
|
|
lyrics: '',
|
|
liked: false,
|
|
playCount: 0,
|
|
playbackState: 'Stopped',
|
|
playCountRegistered: false,
|
|
preloaded: false,
|
|
infoRetrieved: true,
|
|
playStartTime: 0
|
|
}
|
|
|
|
export default song
|