Auto-commit 2026-04-29 16:31
This commit is contained in:
20
node_modules/next-auth/providers/discord.d.ts
generated
vendored
Normal file
20
node_modules/next-auth/providers/discord.d.ts
generated
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
import type { OAuthConfig, OAuthUserConfig } from ".";
|
||||
export interface DiscordProfile extends Record<string, any> {
|
||||
accent_color: number;
|
||||
avatar: string;
|
||||
banner: string;
|
||||
banner_color: string;
|
||||
discriminator: string;
|
||||
email: string;
|
||||
flags: number;
|
||||
id: string;
|
||||
image_url: string;
|
||||
locale: string;
|
||||
mfa_enabled: boolean;
|
||||
premium_type: number;
|
||||
public_flags: number;
|
||||
username: string;
|
||||
verified: boolean;
|
||||
}
|
||||
export default function Discord<P extends DiscordProfile>(options: OAuthUserConfig<P>): OAuthConfig<P>;
|
||||
//# sourceMappingURL=discord.d.ts.map
|
||||
Reference in New Issue
Block a user