UNPKG

google-oauth2-node

Version:

Client for OAuth2 authentication for Google APIs (Google Analytics, GMail, Google Docs, etc.)

7 lines (6 loc) 155 B
export interface Config { clientId: string; clientSecret: string; scope: string; } export declare const auth: (config: Config) => Promise<{}>;