aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/videos/playlist
diff options
context:
space:
mode:
Diffstat (limited to 'shared/models/videos/playlist')
-rw-r--r--shared/models/videos/playlist/video-exist-in-playlist.model.ts14
1 files changed, 8 insertions, 6 deletions
diff --git a/shared/models/videos/playlist/video-exist-in-playlist.model.ts b/shared/models/videos/playlist/video-exist-in-playlist.model.ts
index 1b57257e2..fc979c8c0 100644
--- a/shared/models/videos/playlist/video-exist-in-playlist.model.ts
+++ b/shared/models/videos/playlist/video-exist-in-playlist.model.ts
@@ -1,8 +1,10 @@
1export type VideosExistInPlaylists = {
2 [videoId: number ]: VideoExistInPlaylist[]
3}
4
1export type VideoExistInPlaylist = { 5export type VideoExistInPlaylist = {
2 [videoId: number ]: { 6 playlistElementId: number
3 playlistElementId: number 7 playlistId: number
4 playlistId: number 8 startTimestamp?: number
5 startTimestamp?: number 9 stopTimestamp?: number
6 stopTimestamp?: number
7 }[]
8} 10}