]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/videos/video-view.model.ts
More specific message when signup is not allowed
[github/Chocobozzz/PeerTube.git] / shared / models / videos / video-view.model.ts
1 export type VideoViewEvent = 'seek'
2
3 export interface VideoView {
4 currentTime: number
5 viewEvent?: VideoViewEvent
6 }