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