osu-api-extended
Version:
Advanced osu! api wrapper for v1 and v2, with extra stuff
13 lines (12 loc) • 461 B
TypeScript
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 {};