]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - shared/models/videos/playlist/video-exist-in-playlist.model.ts
Share playlists state
[github/Chocobozzz/PeerTube.git] / shared / models / videos / playlist / video-exist-in-playlist.model.ts
CommitLineData
51b34a11
C
1export type VideosExistInPlaylists = {
2 [videoId: number ]: VideoExistInPlaylist[]
3}
4
f0a39880 5export type VideoExistInPlaylist = {
51b34a11
C
6 playlistElementId: number
7 playlistId: number
8 startTimestamp?: number
9 stopTimestamp?: number
f0a39880 10}