1
0
Fork 0
peertube/shared/models/videos/video-update.model.ts

17 lines
335 B
TypeScript
Raw Normal View History

2017-10-31 06:52:52 -04:00
import { VideoPrivacy } from './video-privacy.enum'
export interface VideoUpdate {
name?: string
category?: number
licence?: number
language?: number
description?: string
support?: string
2017-10-31 06:52:52 -04:00
privacy?: VideoPrivacy
tags?: string[]
2018-01-03 04:12:36 -05:00
commentsEnabled?: boolean
nsfw?: boolean
thumbnailfile?: Blob
previewfile?: Blob
}