PeerTube/shared/models/videos/playlist/video-exist-in-playlist.mod...

9 lines
177 B
TypeScript
Raw Normal View History

2019-03-07 17:06:00 +01:00
export type VideoExistInPlaylist = {
[videoId: number ]: {
2019-07-31 15:57:32 +02:00
playlistElementId: number
2019-03-07 17:06:00 +01:00
playlistId: number
startTimestamp?: number
stopTimestamp?: number
}[]
}