aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/video/sort-field.type.ts
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/shared/video/sort-field.type.ts')
-rw-r--r--client/src/app/shared/video/sort-field.type.ts10
1 files changed, 0 insertions, 10 deletions
diff --git a/client/src/app/shared/video/sort-field.type.ts b/client/src/app/shared/video/sort-field.type.ts
deleted file mode 100644
index 65b24d946..000000000
--- a/client/src/app/shared/video/sort-field.type.ts
+++ /dev/null
@@ -1,10 +0,0 @@
1export type VideoSortField = 'name' | '-name'
2 | 'duration' | '-duration'
3 | 'publishedAt' | '-publishedAt'
4 | 'createdAt' | '-createdAt'
5 | 'views' | '-views'
6 | 'likes' | '-likes'
7 | 'trending' | '-trending'
8
9export type CommentSortField = 'createdAt' | '-createdAt'
10 | 'totalReplies' | '-totalReplies'