devexpress-reporting
Version:
DevExpress Reporting provides the capability to develop a reporting application to create and customize reports.
21 lines (20 loc) • 855 B
TypeScript
/**
* DevExpress HTML/JS Reporting (designer\dataObjects\parameters\valueSourceSettingsHelper.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 { LookUpValue } from './lookUpValue';
import { Parameter } from './parameter';
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;
}