devexpress-reporting
Version:
DevExpress Reporting provides the capability to develop a reporting application to create and customize reports.
20 lines (19 loc) • 1.18 kB
TypeScript
/**
* DevExpress HTML/JS Reporting (designer\wizard\pages\dataSourceWizard\_dataSourceWizardHelper.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 { DxPromise } from '@devexpress/analytics-core/analytics-internal-native';
import { IWizardPage, IWizardPageMetadata, PageFactory } from '@devexpress/analytics-core/analytics-wizard';
import { IDataSourceInfo } from '../../../actions/_sqlDataSourceEditor';
export declare function overrideJsonDataSourceWizardPage(factory: PageFactory, pageId: string, meta: IWizardPageMetadata<IWizardPage>): void;
export declare function overrideSqlDataSourceWizardPage(factory: PageFactory, pageId: string, meta: IWizardPageMetadata<IWizardPage>): void;
export declare class DataSourceWizardHelper {
private _page;
private _callback;
constructor(_page: IWizardPage, _callback: (dataSource: any) => DxPromise<IDataSourceInfo>);
commit(superCommit: () => DxPromise<any>, createDataSource: (state: any) => any): JQuery.Promise<any, any, any>;
}