osu-api-extended
Version:
Advanced osu! api wrapper cover all V2 and V1 endpoints, and provide useful tools
12 lines (11 loc) • 477 B
TypeScript
import { IDefaultParams, IError } from "../../types";
import { BeatmapsDiscussionsVotesResponse } from "../../types/v2/beatmaps_discussions_votes";
export declare const beatmaps_discussions_votes: (params: {
discussion_id?: number;
sort?: 'id_desc' | 'id_asc';
score?: '1' | '-1';
user?: number;
receiver?: number;
limit?: number;
cursor_string?: string;
}, addons?: IDefaultParams) => Promise<BeatmapsDiscussionsVotesResponse & IError>;