6 lines
146 B
TypeScript
6 lines
146 B
TypeScript
import { VideoConstant } from './video-constant.model'
|
|
|
|
export interface VideoCaption {
|
|
language: VideoConstant<string>
|
|
captionPath: string
|
|
}
|