]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - shared/models/videos/playlist/video-exist-in-playlist.model.ts
Bumped to version v5.2.1
[github/Chocobozzz/PeerTube.git] / shared / models / videos / playlist / video-exist-in-playlist.model.ts
CommitLineData
51b34a11 1export type VideosExistInPlaylists = {
54909304 2 [videoId: number]: VideoExistInPlaylist[]
51b34a11 3}
38a3ccc7 4export type CachedVideosExistInPlaylists = {
54909304 5 [videoId: number]: CachedVideoExistInPlaylist[]
38a3ccc7 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}