8 lines
129 B
TypeScript
8 lines
129 B
TypeScript
import { Video } from './video.model'
|
|
|
|
export interface VideoImport {
|
|
targetUrl: string
|
|
|
|
video: Video & { tags: string[] }
|
|
}
|