]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - shared/models/videos/live/live-video-session.model.ts
Fix stucked HLS player
[github/Chocobozzz/PeerTube.git] / shared / models / videos / live / live-video-session.model.ts
CommitLineData
26e3e98f
C
1import { LiveVideoError } from './live-video-error.enum'
2
3export interface LiveVideoSession {
4 id: number
5
6 startDate: string
7 endDate: string
8
9 error: LiveVideoError
10
11 replayVideo: {
12 id: number
13 uuid: string
14 shortUUID: string
15 }
16}