UNPKG

@itwin/appui-abstract

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