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

9 lines
386 B
TypeScript

import { OAuthConfig, OAuthUserConfig } from ".";
export interface PinterestProfile extends Record<string, any> {
account_type: "BUSINESS" | "PINNER";
profile_image: string;
website_url: string;
username: string;
}
export default function PinterestProvider<P extends PinterestProfile>(options: OAuthUserConfig<P>): OAuthConfig<P>;
//# sourceMappingURL=pinterest.d.ts.map