initial commit. phase 1 complete

This commit is contained in:
2026-05-05 20:45:19 +02:00
parent d9c68313a0
commit 89e058ffac
20631 changed files with 3224610 additions and 43 deletions
+50
View File
@@ -0,0 +1,50 @@
import type { OAuthConfig, OAuthUserConfig } from ".";
export interface OsuUserCompact {
avatar_url: string;
country_code: string;
default_group: string;
id: string;
is_active: boolean;
is_bot: boolean;
is_deleted: boolean;
is_online: boolean;
is_supporter: boolean;
last_visit: Date | null;
pm_friends_only: boolean;
profile_colour: string | null;
username: string;
}
export interface OsuProfile extends OsuUserCompact, Record<string, any> {
discord: string | null;
has_supported: boolean;
interests: string | null;
join_date: Date;
kudosu: {
available: number;
total: number;
};
location: string | null;
max_blocks: number;
max_friends: number;
occupation: string | null;
playmode: string;
playstyle: string[];
post_count: number;
profile_order: string[];
title: string | null;
title_url: string | null;
twitter: string | null;
website: string | null;
country: {
code: string;
name: string;
};
cover: {
custom_url: string | null;
url: string;
id: number | null;
};
is_restricted: boolean;
}
export default function Osu<P extends OsuProfile>(options: OAuthUserConfig<P>): OAuthConfig<P>;
//# sourceMappingURL=osu.d.ts.map