nodejs-google-adwords
Version:
Google Ads API Client Library for Node.js
9 lines (8 loc) • 488 B
TypeScript
import { IReportDefinition } from '../ReportDefinitionService/ReportDefinition';
import { IReport, IClientReportService, IReportDownloadOptions } from '../ReportService';
export declare abstract class ClientReportService implements IClientReportService {
private options?;
get(reportDefinition: Partial<IReportDefinition>): Promise<string | IReport>;
setOptions(options: Partial<IReportDownloadOptions>): void;
getOptions(): Partial<IReportDownloadOptions> | undefined;
}