aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos/shared/sort-field.type.ts
blob: 7bda3112a182aa9e4fb22350a65f7f1ab4f6f909 (plain) (blame)
1
2
3
export type SortField = 'name' | '-name'
                      | 'duration' | '-duration'
                      | 'createdAt' | '-createdAt';