diff options
Diffstat (limited to 'shared/models/videos')
-rw-r--r-- | shared/models/videos/stats/index.ts | 1 | ||||
-rw-r--r-- | shared/models/videos/stats/video-stats-overall-query.model.ts | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/shared/models/videos/stats/index.ts b/shared/models/videos/stats/index.ts index 4a6fdaa71..a9b203f58 100644 --- a/shared/models/videos/stats/index.ts +++ b/shared/models/videos/stats/index.ts | |||
@@ -1,3 +1,4 @@ | |||
1 | export * from './video-stats-overall-query.model' | ||
1 | export * from './video-stats-overall.model' | 2 | export * from './video-stats-overall.model' |
2 | export * from './video-stats-retention.model' | 3 | export * from './video-stats-retention.model' |
3 | export * from './video-stats-timeserie-query.model' | 4 | export * from './video-stats-timeserie-query.model' |
diff --git a/shared/models/videos/stats/video-stats-overall-query.model.ts b/shared/models/videos/stats/video-stats-overall-query.model.ts new file mode 100644 index 000000000..6b4c2164f --- /dev/null +++ b/shared/models/videos/stats/video-stats-overall-query.model.ts | |||
@@ -0,0 +1,4 @@ | |||
1 | export interface VideoStatsOverallQuery { | ||
2 | startDate?: string | ||
3 | endDate?: string | ||
4 | } | ||