123456789 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.SRelationDir = void 0;
- var SRelationDir;
- (function (SRelationDir) {
- SRelationDir[SRelationDir["Undirected"] = 0] = "Undirected";
- SRelationDir[SRelationDir["Forward"] = 1] = "Forward";
- SRelationDir[SRelationDir["Reverse"] = 2] = "Reverse";
- })(SRelationDir = exports.SRelationDir || (exports.SRelationDir = {}));
|