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

8 lines
147 B
TypeScript

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