mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-06 03:50:26 +02:00
10 lines
226 B
TypeScript
10 lines
226 B
TypeScript
export type VideosExistInPlaylists = {
|
|
[videoId: number ]: VideoExistInPlaylist[]
|
|
}
|
|
|
|
export type VideoExistInPlaylist = {
|
|
playlistElementId: number
|
|
playlistId: number
|
|
startTimestamp?: number
|
|
stopTimestamp?: number
|
|
}
|