osu-api-extended
Version:
Advanced osu! api wrapper cover all V2 and V1 endpoints, and provide useful tools
11 lines (10 loc) • 379 B
TypeScript
import { IDefaultParams, IError } from "../../types";
import { MatchesDetailsResponse } from "../../types/v2/matches_detaIls";
type Response = MatchesDetailsResponse & IError;
export declare const matches_details: (params: {
match_id: number;
before?: number;
after?: number;
limit?: number;
}, addons?: IDefaultParams) => Promise<Response>;
export {};