NeahFront3/node_modules/next-auth/providers/eveonline.d.ts
2025-04-09 18:02:58 +02:00

12 lines
452 B
TypeScript

import type { OAuthConfig, OAuthUserConfig } from ".";
export interface EVEOnlineProfile extends Record<string, any> {
CharacterID: number;
CharacterName: string;
ExpiresOn: string;
Scopes: string;
TokenType: string;
CharacterOwnerHash: string;
IntellectualProperty: string;
}
export default function EVEOnline<P extends EVEOnlineProfile>(options: OAuthUserConfig<P>): OAuthConfig<P>;
//# sourceMappingURL=eveonline.d.ts.map