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
|
|
}
|