UNPKG

osu-disambiguate

Version:

Best-effort disambiguation of osu! usernames into IDs

8 lines (7 loc) 218 B
export interface OsuLegacyApiUser { country: string; id: number; joinDate: string; name: string; } export declare function getUserByName(name: string, apiKey: string): Promise<OsuLegacyApiUser | null>;