]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/videos/video-import.model.ts
Add ability to list video imports
[github/Chocobozzz/PeerTube.git] / shared / models / videos / video-import.model.ts
1 import { Video } from './video.model'
2 import { VideoConstant } from './video-constant.model'
3 import { VideoImportState } from '../../index'
4
5 export interface VideoImport {
6 targetUrl: string
7 createdAt: string
8 updatedAt: string
9 state: VideoConstant<VideoImportState>
10
11 video?: Video & { tags: string[] }
12 }