osu-api-extended
Version:
Advanced osu! api wrapper cover all V2 and V1 endpoints, and provide useful tools
12 lines (11 loc) • 492 B
TypeScript
import { IDefaultParams, IError } from "../../types";
import { GroupsHistoryResponse } from "../../types/v2/groups_history";
type Response = GroupsHistoryResponse & IError;
export declare const groups_history: (params: {
user?: string | number;
group?: 'gmt' | 'nat' | 'dev' | 'alumni' | 'support' | 'bng' | 'loved' | 'bng_limited';
sort?: 'id_desc' | 'id_asc';
max_date?: string;
min_date?: string;
}, addons?: IDefaultParams) => Promise<Response>;
export {};