]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - 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
CommitLineData
51b34a11
C
1export type VideosExistInPlaylists = {
2 [videoId: number ]: VideoExistInPlaylist[]
3}
38a3ccc7 4export type CachedVideosExistInPlaylists = {
5 [videoId: number ]: CachedVideoExistInPlaylist[]
6}
51b34a11 7
38a3ccc7 8export type CachedVideoExistInPlaylist = {
51b34a11
C
9 playlistElementId: number
10 playlistId: number
11 startTimestamp?: number
12 stopTimestamp?: number
f0a39880 13}
38a3ccc7 14
15export type VideoExistInPlaylist = CachedVideoExistInPlaylist & {
16 playlistDisplayName: string
17 playlistShortUUID: string
18}