social-login-oauth
Version:
Social login and authentication which supports authentication with **Google** and **Facebook** platforms.
12 lines • 495 B
TypeScript
import { LoginOpt } from './interfaces/user.interface';
export declare class GoogleService {
static signIn(clientId: string, opt?: LoginOpt): Promise<any>;
static getLoginStatus(): Promise<any>;
static signOut(revoke?: boolean): Promise<any>;
}
export declare class FacebookService {
static signIn(clientId: string, opt?: LoginOpt): Promise<any>;
static getLoginStatus(): Promise<any>;
static signOut(revoke?: boolean): Promise<any>;
}
//# sourceMappingURL=index.d.ts.map