PeerTube/client/src/app/shared/video/sort-field.type.ts

11 lines
456 B
TypeScript

export type VideoSortField = 'name' | '-name'
| 'duration' | '-duration'
| 'publishedAt' | '-publishedAt'
| 'createdAt' | '-createdAt'
| 'views' | '-views'
| 'likes' | '-likes'
| 'trending' | '-trending'
export type CommentSortField = 'createdAt' | '-createdAt'
| 'totalReplies' | '-totalReplies'