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

7 lines
146 B
TypeScript
Raw Normal View History

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