osu-api-extended
Version:
Advanced osu! api wrapper for v1 and v2, with extra stuff
13 lines (12 loc) • 481 B
TypeScript
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';
show?: 'all' | 'active' | 'ended' | 'participated' | 'owned';
query?: string;
limit?: number;
sort?: 'ended' | 'created';
cursor_string?: string;
}, addons?: IDefaultParams) => Promise<Response>;
export {};