PeerTube/shared/models/videos/live/live-video-create.model.ts

9 lines
237 B
TypeScript
Raw Normal View History

2022-03-04 12:40:02 +00:00
import { LiveVideoLatencyMode } from '.'
2020-10-26 15:44:23 +00:00
import { VideoCreate } from '../video-create.model'
export interface LiveVideoCreate extends VideoCreate {
saveReplay?: boolean
2020-12-03 13:10:54 +00:00
permanentLive?: boolean
2022-03-04 12:40:02 +00:00
latencyMode?: LiveVideoLatencyMode
2020-10-26 15:44:23 +00:00
}