mirror of https://github.com/Chocobozzz/PeerTube
7 lines
147 B
TypeScript
7 lines
147 B
TypeScript
|
import { VideoConstant } from '../video-constant.model'
|
||
|
|
||
|
export interface VideoCaption {
|
||
|
language: VideoConstant<string>
|
||
|
captionPath: string
|
||
|
}
|