UNPKG

newgrounds-api

Version:

A simple Node.js library for interacting with the Newgrounds data.

6 lines (5 loc) 197 B
/** * @type SearchSort * @description Available search sort options */ export type SearchSort = 'relevance' | 'date-desc' | 'date-asc' | 'score-desc' | 'score-asc' | 'views-desc' | 'views-asc';