mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-02-20 11:48:31 -06:00
15 lines
291 B
TypeScript
15 lines
291 B
TypeScript
import { VideoPrivacy } from './video-privacy.enum'
|
|
|
|
export interface VideoUpdate {
|
|
name?: string
|
|
category?: number
|
|
licence?: number
|
|
language?: number
|
|
description?: string
|
|
support?: string
|
|
privacy?: VideoPrivacy
|
|
tags?: string[]
|
|
commentsEnabled?: boolean
|
|
nsfw?: boolean
|
|
}
|