devexpress-reporting-react
Version:
DevExpress Reporting React provides the capability to develop a reporting application to create and customize reports.
14 lines (13 loc) • 610 B
TypeScript
import { FunctionComponent } from 'react';
import { BaseCallbacksPropsType } from './_baseCallbacks';
export type ReportViewerCallbacksPropsType = BaseCallbacksPropsType & {
CustomizeElements?: (args: any) => void;
PreviewClick?: (args: any) => void;
EditingFieldChanged?: (args: any) => void;
DocumentReady?: (args: any) => void;
CustomizeExportOptions?: (args: any) => void;
CustomizeMenuActions?: (args: any) => void;
OnExport?: (args: any) => void;
};
declare const ReportViewerCallbacks: FunctionComponent<ReportViewerCallbacksPropsType>;
export default ReportViewerCallbacks;