devexpress-reporting
Version:
DevExpress Reporting provides the capability to develop a reporting application to create and customize reports.
28 lines (27 loc) • 1.59 kB
TypeScript
/**
* DevExpress HTML/JS Reporting (designer\wizard\legacyReportWizard.d.ts)
* Version: 24.2.6
* Build date: Mar 18, 2025
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
* License: https://www.devexpress.com/Support/EULAs/universal.xml
*/
/// <reference types="jquery" />
import { MultiQueryDataSourceWizardPageIterator, PageFactory, PopupWizard, StateManager } from '@devexpress/analytics-core/analytics-wizard';
import { _ReportWizardOptions } from './internal/utils';
import { LegacyReportRequestModel } from './internal/_legacyReportRequestModel';
import { ILegacyReportWizardState, IReportWizardState } from './reportWizardState';
export declare class LegacyReportWizard extends PopupWizard {
private _reportWizardOptions;
protected _callBeforeFinishHandler(state: any, wizardModel?: any): void;
protected _callAfterFinishHandler(state: any, result: any): void;
constructor(pageFactory: any, _reportWizardOptions: _ReportWizardOptions);
initialize(state?: IReportWizardState): void;
start(finishCallback?: (state: IReportWizardState) => JQueryPromise<any>): void;
_requestModelType: typeof LegacyReportRequestModel;
title: any;
}
export declare class LegacyReportWizardPageIterator extends MultiQueryDataSourceWizardPageIterator<ILegacyReportWizardState> {
constructor(pageFactory: PageFactory, stateManager: StateManager, reportWizardOptions: _ReportWizardOptions);
getNextPageId(pageId: string): string;
}
export declare function _createLegacyReportWizard(reportWizardOptions: _ReportWizardOptions): LegacyReportWizard;