1
0
Fork 0
peertube/shared/models/videos/import/video-import-create.model.ts
2018-08-14 15:00:01 +02:00

9 lines
208 B
TypeScript

import { VideoUpdate } from '../video-update.model'
export interface VideoImportCreate extends VideoUpdate {
targetUrl?: string
magnetUri?: string
torrentfile?: Blob
channelId: number // Required
}