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