PeerTube/shared/models/videos/video-import-create.model.ts

10 lines
207 B
TypeScript
Raw Normal View History

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
}