Neah_Front/node_modules/next-auth/providers/strava.d.ts
2025-04-08 14:45:23 +02:00

9 lines
338 B
TypeScript

import type { OAuthConfig, OAuthUserConfig } from ".";
export interface StravaProfile extends Record<string, any> {
id: string;
firstname: string;
lastname: string;
profile: string;
}
export default function Strava<P extends StravaProfile>(options: OAuthUserConfig<P>): OAuthConfig<P>;
//# sourceMappingURL=strava.d.ts.map