]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/videos/playlist/video-exist-in-playlist.model.ts
Translated using Weblate (Ukrainian)
[github/Chocobozzz/PeerTube.git] / shared / models / videos / playlist / video-exist-in-playlist.model.ts
1 export type VideosExistInPlaylists = {
2 [videoId: number ]: VideoExistInPlaylist[]
3 }
4 export type CachedVideosExistInPlaylists = {
5 [videoId: number ]: CachedVideoExistInPlaylist[]
6 }
7
8 export type CachedVideoExistInPlaylist = {
9 playlistElementId: number
10 playlistId: number
11 startTimestamp?: number
12 stopTimestamp?: number
13 }
14
15 export type VideoExistInPlaylist = CachedVideoExistInPlaylist & {
16 playlistDisplayName: string
17 playlistShortUUID: string
18 }