UNPKG

libmodpm

Version:

Modrinth package manager library

26 lines (25 loc) 572 B
/** * Represents projects search sort index and direction. */ export declare const enum RegistrySearchSort { /** * Sort by search query relevance. */ RELEVANCE = "relevance", /** * Sort by number of downloads, descending. */ DOWNLOADS = "downloads", /** * Sort by number of follows, descending. */ FOLLOWS = "follows", /** * Sort by recently published, descending. */ NEWEST = "newest", /** * Sort by recently updated (new version submitted), descending. */ UPDATED = "updated" }