UNPKG

osu-api-extended

Version:

Advanced osu! api wrapper cover all V2 and V1 endpoints, and provide useful tools

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