aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/videos/live/live-video-create.model.ts
blob: 49ccaf45b96145eaf5965b3640fe105ff1c019a7 (plain) (blame)
1
2
3
4
5
6
7
8
import { LiveVideoLatencyMode } from '.'
import { VideoCreate } from '../video-create.model'

export interface LiveVideoCreate extends VideoCreate {
  saveReplay?: boolean
  permanentLive?: boolean
  latencyMode?: LiveVideoLatencyMode
}