mirror of
https://github.com/koel/koel
synced 2025-01-09 19:28:44 +00:00
26 lines
447 B
TypeScript
26 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
|