UNPKG

devexpress-reporting

Version:

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

19 lines (18 loc) 809 B
/** * DevExpress HTML/JS Reporting (designer\wizard\pages\setReportTitlePage.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 { IReportTitleState } from '../reportWizardState'; import * as ko from 'knockout'; import { WizardPageBase, PageFactory } from '@devexpress/analytics-core/analytics-wizard'; export declare class SetReportTitlePage extends WizardPageBase { initialize(data: IReportTitleState): JQuery.Promise<any, any, any>; canNext(): boolean; canFinish(): boolean; commit(): JQuery.Promise<any, any, any>; reportTitle: ko.Observable<string>; } export declare function _registerSetReportTitlePage(factory: PageFactory): void;