UNPKG

firebase-apparatus

Version:

Lightweight implementation of firebase-tools as a Node module

9 lines (8 loc) 228 B
interface GoogleAccessToken { access_token: string; token_type: string; expires_in: number; id_token: string; } export declare function getOAuthToken(refreshToken: string): Promise<GoogleAccessToken>; export {};