1
0
Fork 0
peertube/shared/models/videos/playlist/video-exist-in-playlist.mod...

11 lines
226 B
TypeScript
Raw Normal View History

2020-01-06 12:06:13 +00:00
export type VideosExistInPlaylists = {
[videoId: number ]: VideoExistInPlaylist[]
}
2019-03-07 16:06:00 +00:00
export type VideoExistInPlaylist = {
2020-01-06 12:06:13 +00:00
playlistElementId: number
playlistId: number
startTimestamp?: number
stopTimestamp?: number
2019-03-07 16:06:00 +00:00
}