UNPKG

@accounts/oauth-instagram

Version:

13 lines (12 loc) 457 B
import { type OAuthProvider, type OAuthUser } from '@accounts/oauth'; import { type Configuration } from './types/configuration'; export declare class AccountsOAuthInstagram implements OAuthProvider { getRegistrationPayload?: (oauthUser: OAuthUser) => Promise<any>; constructor(config?: Configuration); authenticate(params: any): Promise<{ id: any; username: any; profilePicture: any; accessToken: any; }>; }