]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/videos/video-create.model.ts
Better typescript typing for a better world
[github/Chocobozzz/PeerTube.git] / shared / models / videos / video-create.model.ts
1 export interface VideoCreate {
2 category: number
3 licence: number
4 language: number
5 description: string
6 nsfw: boolean
7 name: string
8 tags: string[]
9 }