ng-gapi
Version:
Angular 9+ Google api module ng-gapi
12 lines (11 loc) • 403 B
TypeScript
/// <reference types="gapi.auth2" />
import { GoogleApiService } from './GoogleApiService';
import GoogleAuth = gapi.auth2.GoogleAuth;
import { Observable } from 'rxjs';
export declare class GoogleAuthService {
private googleApi;
private GoogleAuth;
constructor(googleApi: GoogleApiService);
getAuth(newInstance?: boolean): Observable<GoogleAuth>;
private loadGapiAuth;
}