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

8 lines
147 B
TypeScript
Raw Normal View History

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