Add to playlist dropdown

This commit is contained in:
Chocobozzz
2019-03-07 17:06:00 +01:00
committed by Chocobozzz
parent 830b4faff1
commit f0a3988066
55 changed files with 961 additions and 94 deletions

View File

@@ -0,0 +1,7 @@
export type VideoExistInPlaylist = {
[videoId: number ]: {
playlistId: number
startTimestamp?: number
stopTimestamp?: number
}[]
}