UNPKG

osu-api-extended

Version:

Advanced osu! api wrapper for v1 and v2, with extra stuff

8 lines (7 loc) 315 B
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; }, addons?: IDefaultParams) => Promise<Response>; export {};