type SortProperty = "date" | "score";
type SortDirection = "asc" | "desc";

export type PostsSort = `${SortProperty}:${SortDirection}`;
