UNPKG

pip-services3-expressions-nodex

Version:

Tokenizers, parsers and expression calculators for Pip.Services in Node.js / ES2017

23 lines 944 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.VariantType = void 0; /** @module variants */ /** * Defines supported types of variant values. */ var VariantType; (function (VariantType) { VariantType[VariantType["Null"] = 0] = "Null"; VariantType[VariantType["Integer"] = 1] = "Integer"; VariantType[VariantType["Long"] = 2] = "Long"; VariantType[VariantType["Float"] = 3] = "Float"; VariantType[VariantType["Double"] = 4] = "Double"; VariantType[VariantType["String"] = 5] = "String"; VariantType[VariantType["Boolean"] = 6] = "Boolean"; VariantType[VariantType["DateTime"] = 7] = "DateTime"; VariantType[VariantType["TimeSpan"] = 8] = "TimeSpan"; VariantType[VariantType["Object"] = 9] = "Object"; VariantType[VariantType["Array"] = 10] = "Array"; })(VariantType = exports.VariantType || (exports.VariantType = {})); ; //# sourceMappingURL=VariantType.js.map