UNPKG

google-ads-node

Version:

Google Ads gRPC Client Library for Node

15 lines (14 loc) 320 B
interface AuthOptions { clientId: string; clientSecret: string; refreshToken: string; } export default class Auth { private options; private client; constructor(options: AuthOptions); getAccessToken(): Promise<string>; private buildOAuth2Client; private setRefreshToken; } export {};