aboutsummaryrefslogtreecommitdiffhomepage
path: root/packages/models/src/videos/caption/video-caption.model.ts
blob: d6d625ff7e3a767f57c1c6d363552fee07bd8a5d (plain) (blame)
1
2
3
4
5
6
7
import { VideoConstant } from '../video-constant.model.js'

export interface VideoCaption {
  language: VideoConstant<string>
  captionPath: string
  updatedAt: string
}