osu-api-extended
Version:
Advanced osu! api wrapper cover all V2 and V1 endpoints, and provide useful tools
11 lines (10 loc) • 402 B
TypeScript
import { IDefaultParams, IError } from "../../types";
import { forums_topics_list_response } from "../../types/v2/forums_topics_list";
type Response = forums_topics_list_response & IError;
export declare const forums_topics_list: (params: {
id: number;
sort?: 'new' | 'old';
limit?: number;
cursor_string?: string;
}, addons?: IDefaultParams) => Promise<Response>;
export {};