PeerTube/shared/models/videos/video-import.model.ts

15 lines
343 B
TypeScript
Raw Normal View History

import { Video } from './video.model'
2018-08-02 15:48:50 +00:00
import { VideoConstant } from './video-constant.model'
import { VideoImportState } from '../../index'
export interface VideoImport {
2018-08-03 07:27:30 +00:00
id: number
targetUrl: string
2018-08-02 15:48:50 +00:00
createdAt: string
updatedAt: string
state: VideoConstant<VideoImportState>
2018-08-03 07:27:30 +00:00
error?: string
2018-08-02 15:48:50 +00:00
video?: Video & { tags: string[] }
}