aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/videos/caption
diff options
context:
space:
mode:
Diffstat (limited to 'shared/models/videos/caption')
-rw-r--r--shared/models/videos/caption/index.ts2
-rw-r--r--shared/models/videos/caption/video-caption-update.model.ts4
-rw-r--r--shared/models/videos/caption/video-caption.model.ts7
3 files changed, 0 insertions, 13 deletions
diff --git a/shared/models/videos/caption/index.ts b/shared/models/videos/caption/index.ts
deleted file mode 100644
index 2a5ff512d..000000000
--- a/shared/models/videos/caption/index.ts
+++ /dev/null
@@ -1,2 +0,0 @@
1export * from './video-caption.model'
2export * from './video-caption-update.model'
diff --git a/shared/models/videos/caption/video-caption-update.model.ts b/shared/models/videos/caption/video-caption-update.model.ts
deleted file mode 100644
index ff5728715..000000000
--- a/shared/models/videos/caption/video-caption-update.model.ts
+++ /dev/null
@@ -1,4 +0,0 @@
1export interface VideoCaptionUpdate {
2 language: string
3 captionfile: Blob
4}
diff --git a/shared/models/videos/caption/video-caption.model.ts b/shared/models/videos/caption/video-caption.model.ts
deleted file mode 100644
index 6d5665006..000000000
--- a/shared/models/videos/caption/video-caption.model.ts
+++ /dev/null
@@ -1,7 +0,0 @@
1import { VideoConstant } from '../video-constant.model'
2
3export interface VideoCaption {
4 language: VideoConstant<string>
5 captionPath: string
6 updatedAt: string
7}