UNPKG

nodejs-google-adwords

Version:
9 lines (8 loc) 488 B
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; }