import { Video } from './video.model' import { VideoConstant } from './video-constant.model' import { VideoImportState } from './video-import-state.enum' export interface VideoImport { id: number targetUrl: string createdAt: string updatedAt: string state: VideoConstant error?: string video?: Video & { tags: string[] } }