1
0
Fork 0
peertube/shared/models/videos/playlist/video-exist-in-playlist.model.ts
2019-03-18 11:17:59 +01:00

7 lines
147 B
TypeScript

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