aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/videos/playlist/video-exist-in-playlist.model.ts
blob: fc979c8c0be90b475cb5515b807a502d7dc55073 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
export type VideosExistInPlaylists = {
  [videoId: number ]: VideoExistInPlaylist[]
}

export type VideoExistInPlaylist = {
  playlistElementId: number
  playlistId: number
  startTimestamp?: number
  stopTimestamp?: number
}