mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 10:34:17 +00:00
20 lines
377 B
JavaScript
20 lines
377 B
JavaScript
export default {
|
|
name: "TrackLyric",
|
|
collection: "tracks_lyrics",
|
|
schema: {
|
|
track_id: {
|
|
type: String,
|
|
required: true
|
|
},
|
|
lrc: {
|
|
type: Object,
|
|
default: {}
|
|
},
|
|
video_source: {
|
|
type: String,
|
|
},
|
|
sync_audio_at: {
|
|
type: String,
|
|
}
|
|
}
|
|
} |