UNPKG

angularx-social-login

Version:

Social login and authentication module for Angular 4 / 5. Supports authentication with Google and Facebook. Can be extended to other providers also.

9 lines (8 loc) 286 B
import { SocialUser } from './user'; import { LoginOpt } from '../auth.service'; export interface LoginProvider { initialize(): Promise<void>; getLoginStatus(): Promise<SocialUser>; signIn(opt?: LoginOpt): Promise<SocialUser>; signOut(revoke?: boolean): Promise<any>; }