UNPKG

@itwin/presentation-common

Version:

Common pieces for iModel.js presentation packages

23 lines 991 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 PresentationRules */ /** * Available value types of user-controllable variables * @public */ export var VariableValueType; (function (VariableValueType) { /** Bool value, that uses Yes / No strings in the UI */ VariableValueType["YesNo"] = "YesNo"; /** Bool value, that uses Show / Hide strings in the UI */ VariableValueType["ShowHide"] = "ShowHide"; /** Any string value */ VariableValueType["String"] = "StringValue"; /** Any integer value */ VariableValueType["Int"] = "IntValue"; })(VariableValueType || (VariableValueType = {})); //# sourceMappingURL=Variables.js.map