Auto-commit 2026-04-29 16:31
This commit is contained in:
11
node_modules/next-auth/providers/battlenet.d.ts
generated
vendored
Normal file
11
node_modules/next-auth/providers/battlenet.d.ts
generated
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
import type { OAuthConfig, OAuthUserConfig } from ".";
|
||||
export interface BattleNetProfile extends Record<string, any> {
|
||||
sub: string;
|
||||
battle_tag: string;
|
||||
}
|
||||
/** See the [available regions](https://develop.battle.net/documentation/guides/regionality-and-apis) */
|
||||
export declare type BattleNetIssuer = "https://www.battlenet.com.cn/oauth" | `https://${"us" | "eu" | "kr" | "tw"}.battle.net/oauth`;
|
||||
export default function BattleNet<P extends BattleNetProfile>(options: OAuthUserConfig<P> & {
|
||||
issuer: BattleNetIssuer;
|
||||
}): OAuthConfig<P>;
|
||||
//# sourceMappingURL=battlenet.d.ts.map
|
||||
Reference in New Issue
Block a user