]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - shared/models/videos/video-import-create.model.ts
Increase video import timeout
[github/Chocobozzz/PeerTube.git] / shared / models / videos / video-import-create.model.ts
CommitLineData
fbad87b0
C
1import { VideoUpdate } from './video-update.model'
2
3export interface VideoImportCreate extends VideoUpdate {
ce33919c
C
4 targetUrl?: string
5 magnetUri?: string
6 torrentfile?: Blob
7
fbad87b0
C
8 channelId: number // Required
9}