UNPKG

devexpress-reporting

Version:

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

36 lines (35 loc) 1.03 kB
/** * DevExpress HTML/JS Reporting (designer\internal\_baseConverter.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'; export declare class BaseConverter { protected _model: any; popupOptions: { height: number; visible: ko.Observable<boolean>; title: any; confirmMessage: string; infoMessage: string; linkText: string; linkUrl: string; container: (element: HTMLElement) => HTMLElement; buttons: { toolbar: string; location: string; widget: string; options: { text: any; type: string; stylingMode: string; onClick: () => void; }; }[]; }; convert(model: any): void; protected _applyChanges(): void; protected _cancel(): void; }