UNPKG

435 BTypeScriptView Raw
1import GoogleAuthData from './GoogleAuthData';
2declare class GoogleAuthentication extends GoogleAuthData {
3 clientId?: string;
4 accessToken?: string;
5 accessTokenExpirationDate?: number;
6 refreshToken?: string;
7 idToken?: string;
8 idTokenExpirationDate?: number;
9 constructor(options: any);
10 equals(other: any): boolean;
11 toJSON(): {
12 [key: string]: any;
13 };
14}
15export default GoogleAuthentication;