]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/videos/playlist/video-exist-in-playlist.model.ts
Merge branch 'feature/e2e' into develop
[github/Chocobozzz/PeerTube.git] / shared / models / videos / playlist / video-exist-in-playlist.model.ts
1 export type VideosExistInPlaylists = {
2 [videoId: number ]: VideoExistInPlaylist[]
3 }
4
5 export type VideoExistInPlaylist = {
6 playlistElementId: number
7 playlistId: number
8 startTimestamp?: number
9 stopTimestamp?: number
10 }