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