UNPKG

osu-api-extended

Version:

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

6 lines (5 loc) 321 B
import { IDefaultParams, IError } from "../../types"; import { BeatmapsPacksDetailsResponse } from "../../types/v2/beatmaps_packs_details"; type Response = BeatmapsPacksDetailsResponse & IError; export declare const beatmap_packs_details: (pack_tag: string, addons?: IDefaultParams) => Promise<Response>; export {};