@itwin/appui-abstract
Version:
iTwin.js UI abstractions
40 lines • 1.72 kB
JavaScript
;
/*---------------------------------------------------------------------------------------------
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
* See LICENSE.md in the project root for license terms and full copyright notice.
*--------------------------------------------------------------------------------------------*/
/** @packageDocumentation
* @module Properties
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.StandardTypeNames = void 0;
// cSpell:ignore shortdate
/**
* Standard Type Names for converters and editors.
* @public
*/
var StandardTypeNames;
(function (StandardTypeNames) {
StandardTypeNames["Text"] = "text";
StandardTypeNames["String"] = "string";
StandardTypeNames["DateTime"] = "dateTime";
StandardTypeNames["ShortDate"] = "shortdate";
StandardTypeNames["Boolean"] = "boolean";
StandardTypeNames["Bool"] = "bool";
StandardTypeNames["Float"] = "float";
StandardTypeNames["Double"] = "double";
StandardTypeNames["Int"] = "int";
StandardTypeNames["Integer"] = "integer";
StandardTypeNames["Number"] = "number";
StandardTypeNames["Hexadecimal"] = "hexadecimal";
StandardTypeNames["Hex"] = "hex";
StandardTypeNames["Enum"] = "enum";
StandardTypeNames["Point2d"] = "point2d";
StandardTypeNames["Point3d"] = "point3d";
StandardTypeNames["Navigation"] = "navigation";
StandardTypeNames["Composite"] = "composite";
StandardTypeNames["Array"] = "array";
StandardTypeNames["Struct"] = "struct";
StandardTypeNames["URL"] = "url";
})(StandardTypeNames || (exports.StandardTypeNames = StandardTypeNames = {}));
//# sourceMappingURL=StandardTypeNames.js.map