UNPKG

osu-api-extended

Version:

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

10 lines (9 loc) 344 B
import { IDefaultParams, IError } from "../../types"; import { NewsListResponse } from "../../types/v2/news_list"; type Response = NewsListResponse & IError; export declare const news_list: (params?: { from_year?: string; limit?: string; cursor_string?: string; }, addons?: IDefaultParams) => Promise<Response>; export {};