osu-api-extended
Version:
Advanced osu! api wrapper cover all V2 and V1 endpoints, and provide useful tools
13 lines (12 loc) • 404 B
TypeScript
import { IDefaultParams, IError } from "../../types";
import { MatchesListResponse } from "../../types/v2/matches_list";
type Response = MatchesListResponse & IError;
export declare const matches_list: (params: {
limit?: number;
sort?: 'id_desc' | 'id_asc';
/**
* Use cursor.match_id
*/
after_id: number;
}, addons?: IDefaultParams) => Promise<Response>;
export {};