@itwin/presentation-common
Version:
Common pieces for iModel.js presentation packages
19 lines • 907 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 PresentationRules
*/
/**
* Defines direction of a relationship that should be followed
* @public
*/
export 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 || (RelationshipDirection = {}));
//# sourceMappingURL=RelationshipDirection.js.map