UNPKG

devexpress-reporting

Version:

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

23 lines (22 loc) 1.15 kB
/** * DevExpress HTML/JS Reporting (designer\dataObjects\parameters\lookUpValue.d.ts) * Version: 25.1.3 * Build date: Jun 26, 2025 * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED * License: https://www.devexpress.com/Support/EULAs/universal.xml */ import { IModelSerializer, ISerializableModel, ISerializationInfo, ISerializationInfoArray, ModelSerializer } from '@devexpress/analytics-core/analytics-utils'; import * as ko from 'knockout'; import { ObjectStorageItem } from '../objectStorageItem'; export declare class LookUpValue implements ISerializableModel { static createNew(): LookUpValue; static from(model: any, serializer: ModelSerializer): LookUpValue; static toJson(value: any, serializer: any, refs: any): any; constructor(model: any, serializer?: IModelSerializer); getInfo(): ISerializationInfoArray; description: ko.Observable<string> | ko.Computed<string>; _value: ko.Observable<ObjectStorageItem> | ko.Computed<ObjectStorageItem>; value: ko.Computed<any>; valueInfo: ko.Observable<ISerializationInfo> | ko.Computed<ISerializationInfo>; get isEmpty(): boolean; }