UNPKG

google-ads-node

Version:

Google Ads gRPC Client Library for Node

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