2020-01-06 07:06:13 -05:00
|
|
|
export type VideosExistInPlaylists = {
|
|
|
|
[videoId: number ]: VideoExistInPlaylist[]
|
|
|
|
}
|
2022-10-24 08:48:03 -04:00
|
|
|
export type CachedVideosExistInPlaylists = {
|
|
|
|
[videoId: number ]: CachedVideoExistInPlaylist[]
|
|
|
|
}
|
2020-01-06 07:06:13 -05:00
|
|
|
|
2022-10-24 08:48:03 -04:00
|
|
|
export type CachedVideoExistInPlaylist = {
|
2020-01-06 07:06:13 -05:00
|
|
|
playlistElementId: number
|
|
|
|
playlistId: number
|
|
|
|
startTimestamp?: number
|
|
|
|
stopTimestamp?: number
|
2019-03-07 11:06:00 -05:00
|
|
|
}
|
2022-10-24 08:48:03 -04:00
|
|
|
|
|
|
|
export type VideoExistInPlaylist = CachedVideoExistInPlaylist & {
|
|
|
|
playlistDisplayName: string
|
|
|
|
playlistShortUUID: string
|
|
|
|
}
|