UNPKG

381 BTypeScriptView Raw
1import GoogleAuthData from './GoogleAuthData';
2declare class GoogleIdentity extends GoogleAuthData {
3 uid: string;
4 email: string;
5 displayName?: string;
6 photoURL?: string;
7 firstName?: string;
8 lastName?: string;
9 constructor(options: any);
10 equals(other: any): boolean;
11 toJSON(): {
12 [key: string]: any;
13 };
14}
15export default GoogleIdentity;