devexpress-reporting
Version:
DevExpress Reporting provides the capability to develop a reporting application to create and customize reports.
21 lines (20 loc) • 856 B
TypeScript
/**
* DevExpress HTML/JS Reporting (designer\dataObjects\parameters\valueSourceSettingsHelper.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 { LookUpValue } from './lookUpValue';
export declare class ValueSourceSettingsHelper {
parameter: Parameter;
private _updateValueSourceSettingsType;
private _updateValueSourceSettings;
constructor(parameter: Parameter);
initializeParameterSettingsType(): void;
initializeLookupValueSubscribe(report: any): void;
initializeLookUpValue(lookUpValue: LookUpValue): void;
updateLookUpValues(newType: string, value?: any): void;
updateSettingValues(newType: string, value?: any): void;
}
import { Parameter } from './parameter';