Skip to content

ReportTool

Déclaration
export interface ReportTool {
screenshot(orientation: ExportOrientation): Promise<string>;
downloadReport(geometry: ApiFeature, reportParams: GenerateReportParams): Promise<void>;
downloadTemplate(templateParams: TemplateParams): Promise<void>;
downloadAdvancedScreenshot(orientation: ExportOrientation): Promise<Blob>;
}