9 lines
338 B
TypeScript
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
|