UNPKG

@itwin/appui-abstract

Version:
37 lines 1.58 kB
/*--------------------------------------------------------------------------------------------- * 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 */ // cSpell:ignore shortdate /** * Standard Type Names for converters and editors. * @public */ export 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 || (StandardTypeNames = {})); //# sourceMappingURL=StandardTypeNames.js.map