]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/shared/shared-main/video-caption/video-caption-edit.model.ts
Bumped to version v5.2.1
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-main / video-caption / video-caption-edit.model.ts
1 export interface VideoCaptionEdit {
2 language: {
3 id: string
4 label?: string
5 }
6
7 action?: 'CREATE' | 'REMOVE' | 'UPDATE'
8 captionfile?: any
9 updatedAt?: string
10 }
11
12 export type VideoCaptionWithPathEdit = VideoCaptionEdit & { captionPath?: string }