UNPKG

angularx-social-login

Version:

Social login and authentication module for Angular 9+. Supports authentication with Google, Facebook, Amazon, and VK. Can be extended to other providers also.

8 lines (7 loc) 285 B
import { SocialUser } from './social-user'; export interface LoginProvider { initialize(): Promise<void>; getLoginStatus(loginStatusOptions?: any): Promise<SocialUser>; signIn(signInOptions?: any): Promise<SocialUser>; signOut(revoke?: boolean): Promise<any>; }