UNPKG

osu-api-extended

Version:

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

13 lines (12 loc) 461 B
import { IDefaultParams, IError } from "../../types"; import { ForumsTopicsDetailsResponse } from "../../types/v2/forums_topics_details"; type Response = ForumsTopicsDetailsResponse & IError; export declare const forums_topics_details: (params: { id: number; start_id?: string; end_id?: string; limit?: number; sort?: 'id_asc' | 'id_desc'; cursor_string?: string; }, addons?: IDefaultParams) => Promise<Response>; export {};