mirror of
https://github.com/koel/koel
synced 2025-01-20 00:14:02 +00:00
10 lines
141 B
TypeScript
10 lines
141 B
TypeScript
const playlist: Playlist = {
|
|
id: 0,
|
|
name: '',
|
|
songs: [],
|
|
is_smart: false,
|
|
populated: false,
|
|
rules: []
|
|
}
|
|
|
|
export default playlist
|