1
0
Fork 0
peertube/shared/models/videos/caption/video-caption.model.ts

8 lines
167 B
TypeScript
Raw Normal View History

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