mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-04 10:19:35 +02:00
9 lines
208 B
TypeScript
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
|
|
}
|