]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/videos/video-import.model.ts
Add ability to import video with youtube-dl
[github/Chocobozzz/PeerTube.git] / shared / models / videos / video-import.model.ts
1 import { Video } from './video.model'
2
3 export interface VideoImport {
4 targetUrl: string
5
6 video: Video & { tags: string[] }
7 }