devexpress-reporting-react
Version:
DevExpress Reporting React provides the capability to develop a reporting application to create and customize reports.
10 lines (9 loc) • 355 B
TypeScript
import React from 'react';
import { ICollectionEditorOptions } from '@devexpress/analytics-core/property-grid/widgets/collectioneditor/_editor';
declare const CollectionEditorWrapper: React.FC<{
data: ICollectionEditorOptions;
contentTemplate: ({ data }: {
data: any;
}) => React.ReactNode;
}>;
export default CollectionEditorWrapper;