]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/videos/import/video-import-create.model.ts
Merge branch 'release/3.3.0' into develop
[github/Chocobozzz/PeerTube.git] / shared / models / videos / import / video-import-create.model.ts
1 import { VideoUpdate } from '../video-update.model'
2
3 export interface VideoImportCreate extends VideoUpdate {
4 targetUrl?: string
5 magnetUri?: string
6 torrentfile?: Blob
7
8 channelId: number // Required
9 }