6 lines
133 B
TypeScript
6 lines
133 B
TypeScript
|
import { VideoCreate } from '../video-create.model'
|
||
|
|
||
|
export interface LiveVideoCreate extends VideoCreate {
|
||
|
saveReplay?: boolean
|
||
|
}
|