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

9 lines
177 B
TypeScript
Raw Normal View History

2019-03-07 10:06:00 -06:00
export type VideoExistInPlaylist = {
[videoId: number ]: {
2019-07-31 08:57:32 -05:00
playlistElementId: number
2019-03-07 10:06:00 -06:00
playlistId: number
startTimestamp?: number
stopTimestamp?: number
}[]
}