UNPKG

devexpress-reporting

Version:

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

24 lines (23 loc) 1.05 kB
/** * DevExpress HTML/JS Reporting (designer\actions\reportActions.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 { IDisposableActionsProvider } from '@devexpress/analytics-core/analytics-internal'; import { Disposable, IAction } from '@devexpress/analytics-core/analytics-utils'; import { IComponentAddedEventArgs } from '../utils/inititalizer'; import { IReportDesignerRootContext } from '../tools/generator/reportDesignerContext'; export declare class ReportActions extends Disposable implements IDisposableActionsProvider { private _buildingModel?; actions: IAction[]; private _contextModel; private _targetModel; private _canAddBand; private _addBand; private createComputed; constructor(onComponentAdded?: any, _buildingModel?: IReportDesignerRootContext); getActions(context: any): IAction[]; onComponentAdded: (e: IComponentAddedEventArgs) => void; }