UNPKG

osu-api-extended

Version:

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

10 lines (9 loc) 331 B
import { IError, Modes_names } from "../../types"; import { ScoresDownloadResponse } from "../../types/v2/scores_download"; type Response = ScoresDownloadResponse & IError; export declare const scores_download: (params: { id: number; mode?: Modes_names; file_path?: string; }) => Promise<Response>; export {};