UNPKG

devexpress-reporting

Version:

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

18 lines (17 loc) 832 B
/** * DevExpress HTML/JS Reporting (designer\wizard\internal\utils.d.ts) * Version: 20.2.13 * Build date: Apr 10, 2023 * Copyright (c) 2012 - 2023 Developer Express Inc. ALL RIGHTS RESERVED * License: https://www.devexpress.com/Support/EULAs/universal.xml */ import { IReportWizardCallbacks } from './_utils'; import { IReportWizardSettings } from '../../utils/inititalizer'; import { IDataSourceInfo } from '@devexpress/analytics-core/analytics-internal'; import { _DataSourceWizardOptionsBase } from '@devexpress/analytics-core/analytics-wizard'; export declare class _ReportWizardOptions extends _DataSourceWizardOptionsBase<IReportWizardCallbacks> { callbacks: IReportWizardCallbacks; wizardSettings: IReportWizardSettings; dataSources: ko.PureComputed<IDataSourceInfo[]>; hideDataMemberSubItems: boolean; }