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