UNPKG

devexpress-reporting

Version:

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

32 lines (31 loc) 1.23 kB
/** * DevExpress HTML/JS Reporting (designer\tools\dialogs\saveReportDialog.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 * as ko from 'knockout'; import { IReportDesignerCustomizationHandler } from '../../utils/inititalizer'; import { INavigateTab } from '../navigation/navigateTab'; import { IDialogModel, ReportDialogBase } from './reportDialogBase'; import { SaveAsReportDialog } from './saveAsReportDialog'; export declare class SaveReportDialogModelBase implements IDialogModel { onShow(tab: INavigateTab): void; getUrl(): string; setUrl(url: any): void; constructor(popup: SaveReportDialog); popupButtons: any[]; reportUrl: ko.Observable<string>; saveText: ko.Observable<string>; } export declare class SaveReportDialog extends ReportDialogBase { constructor(saveReportDialog: SaveAsReportDialog, callbacks: IReportDesignerCustomizationHandler); save(url: any): void; notSave(): void; cancel(): void; saveReportDialog: SaveAsReportDialog; onSaving: (e: any) => void; onSaved: (e: any) => void; title: string; }