1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-04 10:19:35 +02:00
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
}