UNPKG

@gooddata/gooddata-js

Version:
12 lines (11 loc) 501 B
import { DashboardExport } from "@gooddata/typings"; import { XhrModule } from "../xhr"; import { IExportResponse } from "../interfaces"; import { IPollingOptions } from "../util"; export declare class DashboardModule { private xhr; constructor(xhr: XhrModule); exportToPdf(projectId: string, dashboardUri: string, filters?: DashboardExport.FilterContextItem[], pollingOptions?: IPollingOptions): Promise<IExportResponse>; private pollPdfFile; private getDashboardExportPayload; }