]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/shared-main/video-caption/video-caption-edit.model.ts
Merge branch 'release/4.2.0' into develop
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-main / video-caption / video-caption-edit.model.ts
CommitLineData
40e87e9e
C
1export interface VideoCaptionEdit {
2 language: {
3 id: string
4 label?: string
5 }
6
57d74ec8 7 action?: 'CREATE' | 'REMOVE' | 'UPDATE'
40e87e9e
C
8 captionfile?: any
9}
57d74ec8 10
11export type VideoCaptionWithPathEdit = VideoCaptionEdit & { captionPath?: string }