mirror of https://github.com/Chocobozzz/PeerTube
17 lines
249 B
TypeScript
17 lines
249 B
TypeScript
|
import { LiveVideoError } from './live-video-error.enum'
|
||
|
|
||
|
export interface LiveVideoSession {
|
||
|
id: number
|
||
|
|
||
|
startDate: string
|
||
|
endDate: string
|
||
|
|
||
|
error: LiveVideoError
|
||
|
|
||
|
replayVideo: {
|
||
|
id: number
|
||
|
uuid: string
|
||
|
shortUUID: string
|
||
|
}
|
||
|
}
|