1
0
Fork 0
peertube/shared/models/videos/import/video-import-create.model.ts

10 lines
208 B
TypeScript
Raw Normal View History

2018-08-14 12:59:53 +00:00
import { VideoUpdate } from '../video-update.model'
export interface VideoImportCreate extends VideoUpdate {
2018-08-06 15:13:39 +00:00
targetUrl?: string
magnetUri?: string
torrentfile?: Blob
channelId: number // Required
}