@itwin/presentation-common
Version:
Common pieces for iModel.js presentation packages
22 lines • 1.05 kB
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 PresentationRules
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.RelationshipDirection = void 0;
/**
* Defines direction of a relationship that should be followed
* @public
*/
var RelationshipDirection;
(function (RelationshipDirection) {
/** Relationship should be followed only in forward direction. */
RelationshipDirection["Forward"] = "Forward";
/** Relationship should be followed only in backward direction. */
RelationshipDirection["Backward"] = "Backward";
})(RelationshipDirection || (exports.RelationshipDirection = RelationshipDirection = {}));
//# sourceMappingURL=RelationshipDirection.js.map