devexpress-reporting
Version:
DevExpress Reporting provides the capability to develop a reporting application to create and customize reports.
21 lines (20 loc) • 1.46 kB
TypeScript
/**
* DevExpress HTML/JS Reporting (designer\internal\_initializer.d.ts)
* Version: 25.1.3
* Build date: Jun 26, 2025
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
* License: https://www.devexpress.com/Support/EULAs/universal.xml
*/
import { DxDeferred, ILocalizationSettings } from '@devexpress/analytics-core/analytics-internal';
import { IEnumType } from '../../common/customTypes';
import { IPreviewCustomizationHandler } from '../../viewer/utils/initializer';
import { IReportDesignerRootContext } from '../tools/generator/reportDesignerContext';
import { IReportDesignerCustomizationHandler, IReportDesignerInitializationData, IReportDesignerInitializationModel } from '../utils/inititalizer';
export declare function createReportDesigner(element: HTMLElement, data: IReportDesignerInitializationData, callbacks: {
designer?: IReportDesignerCustomizationHandler;
preview?: IPreviewCustomizationHandler;
}, localizationSettings?: ILocalizationSettings, knownEnums?: Array<IEnumType>, designerHandlerUri?: string, previewHandlerUri?: string, rtl?: boolean, applyBindings?: boolean): DxDeferred<IReportDesignerRootContext>;
export declare function createReportDesignerFromModel(model: IReportDesignerInitializationModel, element: HTMLElement, callbacks?: {
designer?: IReportDesignerCustomizationHandler;
preview?: IPreviewCustomizationHandler;
}, applyBindings?: boolean): DxDeferred<IReportDesignerRootContext>;