PeerTube/shared/models/videos/video-caption.model.ts

7 lines
146 B
TypeScript
Raw Normal View History

2018-07-12 12:02:00 -05:00
import { VideoConstant } from './video-constant.model'
export interface VideoCaption {
language: VideoConstant<string>
captionPath: string
}