UNPKG

osu-api-extended

Version:

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

13 lines (12 loc) 483 B
import { IDefaultParams, IError } from "../../types"; import { RoomsListResponse } from "../../types/v2/rooms_list"; type Response = RoomsListResponse & IError; export declare const rooms_list: (params: { type?: 'playlists' | 'realtime'; status?: 'all' | 'active' | 'ended' | 'participated' | 'owned'; query?: string; limit?: number; sort?: 'ended' | 'created'; cursor_string?: string; }, addons?: IDefaultParams) => Promise<Response>; export {};