mirror of https://github.com/Chocobozzz/PeerTube
10 lines
208 B
TypeScript
10 lines
208 B
TypeScript
|
import { VideoUpdate } from '../video-update.model'
|
||
|
|
||
|
export interface VideoImportCreate extends VideoUpdate {
|
||
|
targetUrl?: string
|
||
|
magnetUri?: string
|
||
|
torrentfile?: Blob
|
||
|
|
||
|
channelId: number // Required
|
||
|
}
|