1
0
Fork 0
peertube/shared/models/videos/playlist/video-exist-in-playlist.model.ts
2020-01-06 13:34:08 +01:00

10 lines
226 B
TypeScript

export type VideosExistInPlaylists = {
[videoId: number ]: VideoExistInPlaylist[]
}
export type VideoExistInPlaylist = {
playlistElementId: number
playlistId: number
startTimestamp?: number
stopTimestamp?: number
}