1
0
Fork 0
peertube/shared/models/videos/caption/video-caption.model.ts
2022-07-25 10:45:40 +02:00

7 lines
167 B
TypeScript

import { VideoConstant } from '../video-constant.model'
export interface VideoCaption {
language: VideoConstant<string>
captionPath: string
updatedAt: string
}