diff options
Diffstat (limited to 'shared/models/videos')
-rw-r--r-- | shared/models/videos/playlist/video-exist-in-playlist.model.ts | 14 |
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 @@ | |||
1 | export type VideosExistInPlaylists = { | ||
2 | [videoId: number ]: VideoExistInPlaylist[] | ||
3 | } | ||
4 | |||
1 | export type VideoExistInPlaylist = { | 5 | export 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 | } |