devexpress-reporting
Version:
DevExpress Reporting provides the capability to develop a reporting application to create and customize reports.
23 lines (22 loc) • 1.1 kB
TypeScript
/**
* DevExpress HTML/JS Reporting (designer\dataObjects\parameters\lookUpValue.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 { ObjectStorageItem } from '../objectStorageItem';
import { ISerializationInfoArray, ISerializationInfo, ModelSerializer, IModelSerializer } from '@devexpress/analytics-core/analytics-utils';
import * as ko from 'knockout';
export declare class LookUpValue {
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>;
readonly isEmpty: boolean;
}