devexpress-reporting-react
Version:
DevExpress Reporting React provides the capability to develop a reporting application to create and customize reports.
24 lines (23 loc) • 906 B
TypeScript
import React from 'react';
import { JSReportViewer } from 'devexpress-reporting/viewer/binding/jsReportViewer';
import { TemplateEngine } from './core/template-engine';
import '@devexpress/analytics-core/dx-dev-analytics-core-svg-templates.generated';
import 'devexpress-reporting/dx-dev-reporting-svg-templates.generated';
export type DxReportViewerProps = {
height?: string;
width?: string;
cssClass?: string;
templateEngine?: TemplateEngine;
isMobile?: boolean;
accessibilityCompliant?: boolean;
keepReportOnComponentDisposal?: boolean;
reportUrl?: string;
rtl?: boolean;
developmentMode?: boolean;
children?: React.ReactNode;
};
export type DxReportViewerRef = {
instance: () => JSReportViewer;
};
declare const DxReportViewer: React.ForwardRefExoticComponent<DxReportViewerProps & React.RefAttributes<DxReportViewerRef>>;
export default DxReportViewer;