typerinth
Version:
A TypeScript library for interacting with the Modrinth API.
17 lines (16 loc) • 466 B
TypeScript
/**
* The search sort defines how the search results are sorted.
*
* @property Relevance - Sort by relevance. (Default)
* @property Downloads - Sort by downloads.
* @property Follows - Sort by follows.
* @property Newest - Sort by creation date.
* @property Updated - Sort by last updated.
*/
export declare enum SearchSort {
Relevance = "relevance",
Downloads = "downloads",
Follows = "follows",
Newest = "newest",
Updated = "updated"
}