mirror of https://github.com/Chocobozzz/PeerTube
7 lines
119 B
TypeScript
7 lines
119 B
TypeScript
|
export type VideoViewEvent = 'seek'
|
||
|
|
||
|
export interface VideoView {
|
||
|
currentTime: number
|
||
|
viewEvent?: VideoViewEvent
|
||
|
}
|