Chocobozzz/PeerTube

View on GitHub
packages/models/src/videos/caption/video-caption.model.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { VideoConstant } from '../video-constant.model.js'

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