devexpress-reporting
Version:
DevExpress Reporting provides the capability to develop a reporting application to create and customize reports.
21 lines (20 loc) • 815 B
TypeScript
/**
* DevExpress HTML/JS Reporting (designer\actions\reportActions.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 { IComponentAddedEventArgs } from '../utils/inititalizer';
import { IActionsProvider } from '@devexpress/analytics-core/analytics-internal';
import { IAction } from '@devexpress/analytics-core/analytics-utils';
export declare class ReportActions implements IActionsProvider {
actions: IAction[];
private _contextModel;
private _targetModel;
private _canAddBand;
private _addBand;
constructor(onComponentAdded?: any);
getActions(context: any): IAction[];
onComponentAdded: (e: IComponentAddedEventArgs) => void;
}