devexpress-reporting
Version:
DevExpress Reporting provides the capability to develop a reporting application to create and customize reports.
34 lines (33 loc) • 1.06 kB
TypeScript
/**
* DevExpress HTML/JS Reporting (designer\dataObjects\parameters\parameterTypesHelper.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
*/
export interface IParameterType {
value: string;
displayValue: string;
defaultVal: any;
specifics: string;
valueConverter: (val: any) => any;
}
export interface IParameterTypeValue {
value: string;
displayValue: string;
defaultValue: any;
specifics: string;
valueConverter: (val: any, defaultValue?: any) => any;
icon?: string;
localizationId?: string;
}
export declare class ParameterTypesHelper {
static defaultGuidValue: string;
static typeValues: IParameterTypeValue[];
private _getTypeInfo;
private _tryConvertValue;
convertSingleValue(value: any, typeName: string): any;
getSpecifics(typeName: string): string;
getIcon(typeName: string): string;
getDefaultValue(typeName: string): any;
}