aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/videos/video-sort-field.type.ts
blob: 97687f84b28615b36c4b5622b36f4b6338837791 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
export type VideoSortField =
  'name' | '-name' |
  'duration' | '-duration' |
  'publishedAt' | '-publishedAt' |
  'createdAt' | '-createdAt' |
  'views' | '-views' |
  'likes' | '-likes' |

  // trending sorts
  'trending' | '-trending' |
  'hot' | '-hot'