igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
38 lines (37 loc) • 1.85 kB
JavaScript
/*
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
https://www.infragistics.com/legal/license/igultimate-la
https://www.infragistics.com/legal/license/igultimate-eula
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
*/
import { markEnum } from "./type";
/**
* Enumerates the available property types on a data source schema.
*/
export var GenericDataSourceSchemaPropertyType = /*@__PURE__*/ (function (GenericDataSourceSchemaPropertyType) {
/**
* The property is of type boolean.
*/
GenericDataSourceSchemaPropertyType[GenericDataSourceSchemaPropertyType["BooleanValue"] = 0] = "BooleanValue";
/**
* The property is of type integer.
*/
GenericDataSourceSchemaPropertyType[GenericDataSourceSchemaPropertyType["IntValue"] = 1] = "IntValue";
/**
* The property is of type double.
*/
GenericDataSourceSchemaPropertyType[GenericDataSourceSchemaPropertyType["DoubleValue"] = 2] = "DoubleValue";
/**
* The property is of type datetime.
*/
GenericDataSourceSchemaPropertyType[GenericDataSourceSchemaPropertyType["DateTimeValue"] = 3] = "DateTimeValue";
/**
* The property is of type string.
*/
GenericDataSourceSchemaPropertyType[GenericDataSourceSchemaPropertyType["StringValue"] = 4] = "StringValue";
return GenericDataSourceSchemaPropertyType;
})({});
/**
* @hidden
*/
export var GenericDataSourceSchemaPropertyType_$type = markEnum('GenericDataSourceSchemaPropertyType', 'BooleanValue,0|IntValue,1|DoubleValue,2|DateTimeValue,3|StringValue,4');