aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos/shared/sort-field.type.ts
blob: 6e8cc7936d798695006bb4535d5dbb96288357a1 (plain) (blame)
1
2
3
export type SortField = "name" | "-name"
                      | "duration" | "-duration"
                      | "createdDate" | "-createdDate";