7 lines
147 B
TypeScript
7 lines
147 B
TypeScript
export type VideoExistInPlaylist = {
|
|
[videoId: number ]: {
|
|
playlistId: number
|
|
startTimestamp?: number
|
|
stopTimestamp?: number
|
|
}[]
|
|
}
|