osu-api-extended
Version:
Advanced osu! api wrapper cover all V2 and V1 endpoints, and provide useful tools
9 lines (8 loc) • 382 B
TypeScript
import { IBeatmapPackType, IDefaultParams, IError } from "../../types";
import { BeatmapsPacksListResponse } from "../../types/v2/beatmaps_packs_list";
type Response = BeatmapsPacksListResponse & IError;
export declare const beatmaps_packs_list: (params: {
type: IBeatmapPackType;
cursor_string?: string;
}, addons?: IDefaultParams) => Promise<Response>;
export {};