devexpress-reporting-react
Version:
DevExpress Reporting React provides the capability to develop a reporting application to create and customize reports.
16 lines (15 loc) • 434 B
TypeScript
import React from 'react';
import { IDesignerPart } from '@devexpress/analytics-core/core/utils/_utils.designerPart';
type ViewModel = {
parts?: IDesignerPart[];
surfaceClass: (element: HTMLElement) => string;
rootStyle: string;
rtl?: boolean;
addOns?: IDesignerPart[];
accessibilityCompliant?: any;
designMode?: any;
};
declare const Designer: React.FC<{
data: ViewModel;
}>;
export default Designer;