devexpress-reporting-react
Version:
DevExpress Reporting React provides the capability to develop a reporting application to create and customize reports.
15 lines (14 loc) • 601 B
TypeScript
import { FunctionComponent } from 'react';
export type BaseCallbacksPropsType = {
CustomizeParameterEditors?: (args: any) => void;
CustomizeParameterLookUpSource?: (args: any) => void;
ParametersReset?: (args: any) => void;
ParametersSubmitted?: (args: any) => void;
ParametersInitialized?: (args: any) => void;
CustomizeLocalization?: (args: any) => void;
OnInitializing?: (args: any) => void;
BeforeRender?: (args: any) => void;
OnServerError?: (args: any) => void;
};
declare const Callbacks: FunctionComponent<BaseCallbacksPropsType>;
export default Callbacks;