devexpress-reporting-react
Version:
DevExpress Reporting React provides the capability to develop a reporting application to create and customize reports.
11 lines (10 loc) • 437 B
TypeScript
import React from 'react';
import { ITabPanelItemWithPropertyGridViewModel } from '@devexpress/analytics-core/core/tools/_tabInfoWithPropertyGrid';
export type ParametersPanelAPI = {
reset: () => void;
submit: (params: any) => void;
};
declare const ParametersPanel: React.ForwardRefExoticComponent<{
data: ITabPanelItemWithPropertyGridViewModel;
} & React.RefAttributes<ParametersPanelAPI>>;
export default ParametersPanel;