UNPKG

osu-api-extended

Version:

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

11 lines (10 loc) 475 B
import { IDefaultParams, IError } from "../../types"; import { BeatmapsDiscussionsPostsResponse } from "../../types/v2/beatmaps_discussions_posts"; export declare const beatmaps_discussions_posts: (params: { discussion_id?: number; sort?: 'id_desc' | 'id_asc'; types?: ('first' | 'reply' | 'system')[]; user?: number; limit?: number; cursor_string?: string; }, addons?: IDefaultParams) => Promise<BeatmapsDiscussionsPostsResponse & IError>;