modrinthjs
Version:
A type safe Modrinth implementation.
20 lines (19 loc) • 450 B
TypeScript
import type { ProjectResult } from './ProjectResult';
export type SearchResults = {
/**
* The list of results
*/
hits: Array<ProjectResult>;
/**
* The number of results that were skipped by the query
*/
offset: number;
/**
* The number of results that were returned by the query
*/
limit: number;
/**
* The total number of results that match the query
*/
total_hits: number;
};