UNPKG

devexpress-reporting

Version:

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

22 lines (21 loc) 1.09 kB
/** * DevExpress HTML/JS Reporting (viewer\parameters\previewParametersViewModel.viewmodel.d.ts) * Version: 24.2.7 * Build date: Apr 29, 2025 * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED * License: https://www.devexpress.com/Support/EULAs/universal.xml */ import { IViewModel, PropertyChangedEventArgs } from '@devexpress/analytics-core/analytics-serializer-native'; import { Properties as dxButtonProperties } from 'devextreme/ui/button'; import { ParametersPanelModelBase } from './parametersPanelModelBase'; export interface IParametersPanelViewModel extends IViewModel { headerText: string; emptyText: string; isEmpty: boolean; parametersLoading: boolean; buttons: dxButtonProperties[]; showButtons: boolean; showHeader: boolean; } export declare function createPreviewParametersViewModel(this: ParametersPanelModelBase, baseModel: IParametersPanelViewModel): IParametersPanelViewModel; export declare function updateViewModel(this: ParametersPanelModelBase, args: PropertyChangedEventArgs<ParametersPanelModelBase>): void;