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

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