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

13 lines
313 B
TypeScript
Raw Normal View History

import { Video } from './video.model'
2018-08-02 10:48:50 -05:00
import { VideoConstant } from './video-constant.model'
import { VideoImportState } from '../../index'
export interface VideoImport {
targetUrl: string
2018-08-02 10:48:50 -05:00
createdAt: string
updatedAt: string
state: VideoConstant<VideoImportState>
2018-08-02 10:48:50 -05:00
video?: Video & { tags: string[] }
}