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