aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/video/sort-field.type.ts
blob: 65b24d9463ee57e4fb608280ea6f912fa4543fcf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
export type VideoSortField = 'name' | '-name'
                      | 'duration' | '-duration'
                      | 'publishedAt' | '-publishedAt'
                      | 'createdAt' | '-createdAt'
                      | 'views' | '-views'
                      | 'likes' | '-likes'
                      | 'trending' | '-trending'

export type CommentSortField = 'createdAt' | '-createdAt'
                          | 'totalReplies' | '-totalReplies'