@itwin/presentation-common
Version:
Common pieces for iModel.js presentation packages
21 lines • 826 B
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 Content
*/
/**
* Format of the property value.
* @public
*/
export var PropertyValueFormat;
(function (PropertyValueFormat) {
/** Primitive value */
PropertyValueFormat["Primitive"] = "Primitive";
/** Array value */
PropertyValueFormat["Array"] = "Array";
/** Struct value */
PropertyValueFormat["Struct"] = "Struct";
})(PropertyValueFormat || (PropertyValueFormat = {}));
//# sourceMappingURL=TypeDescription.js.map