/** *
( options: OAuthUserConfig
): OAuthConfig
{ return { id: "osu", name: "osu!", type: "oauth", token: "https://osu.ppy.sh/oauth/token", authorization: "https://osu.ppy.sh/oauth/authorize?scope=identify", userinfo: "https://osu.ppy.sh/api/v2/me", profile(profile) { return { id: profile.id.toString(), email: null, name: profile.username, image: profile.avatar_url, } }, options, } }