/** * The comment sort types. See here for descriptions: https://join-lemmy.org/docs/en/users/03-votes-and-ranking.html */ export type CommentSortType = "hot" | "top" | "new" | "old" | "controversial";