UNPKG

devexpress-reporting

Version:

DevExpress Reporting provides the capability to develop a reporting application to create and customize reports.

31 lines (30 loc) 1.93 kB
/** * DevExpress HTML/JS Reporting (designer\wizard\fullscreenReportWizard.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 */ import { IDataSourceInfo } from '@devexpress/analytics-core/analytics-internal'; import { FullscreenWizard, FullscreenWizardPageFactory, PageFactory, PageIterator, StateManager, _WrappedWizardPage } from '@devexpress/analytics-core/analytics-wizard'; import * as ko from 'knockout'; import { _ReportWizardOptions } from './internal/utils'; import { MasterDetailRequestModel } from './internal/_masterDetailRequestModel'; import { IReportWizardState } from './reportWizardState'; export declare class FullscreenReportWizard extends FullscreenWizard { private _reportWizardOptions; protected _callBeforeFinishHandler(state: any, wizardModel?: any): void; protected _callAfterFinishHandler(state: any, result: any): void; constructor(pageFactory: FullscreenWizardPageFactory, _reportWizardOptions: _ReportWizardOptions); _description(): any; initialize(state?: IReportWizardState): void; _requestModelType: typeof MasterDetailRequestModel; _availableDataSources: ko.Observable<IDataSourceInfo[]> | ko.Computed<IDataSourceInfo[]>; } export declare class FullscreenReportWizardPageIterator extends PageIterator<IReportWizardState> { private _reportWizardOptions; constructor(pagesFactory: PageFactory, stateManager: StateManager, _onResetPage: (page: _WrappedWizardPage) => void, _reportWizardOptions: _ReportWizardOptions); getNextPageId(pageId?: string): string; } export declare function _registerFullscreenReportWizardPages(factory: PageFactory, reportWizardOptions: _ReportWizardOptions): void; export declare function _createFullscreenReportWizard(reportWizardOptions: _ReportWizardOptions): FullscreenReportWizard;