UNPKG

@itwin/appui-abstract

Version:
21 lines 971 B
"use strict"; /*--------------------------------------------------------------------------------------------- * 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.PropertyValueFormat = void 0; /** * Enumeration for Format of the property value. * @public */ var PropertyValueFormat; (function (PropertyValueFormat) { PropertyValueFormat[PropertyValueFormat["Primitive"] = 0] = "Primitive"; PropertyValueFormat[PropertyValueFormat["Array"] = 1] = "Array"; PropertyValueFormat[PropertyValueFormat["Struct"] = 2] = "Struct"; })(PropertyValueFormat || (exports.PropertyValueFormat = PropertyValueFormat = {})); //# sourceMappingURL=Value.js.map