UNPKG

archunit

Version:

ArchUnit TypeScript is an architecture testing library, to specify and assert architecture rules in your TypeScript app

18 lines 560 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.perEdge = exports.perInternalEdge = void 0; const perInternalEdge = () => { return (edge) => { if (edge.external === false) { return { sourceLabel: edge.source, targetLabel: edge.target }; } }; }; exports.perInternalEdge = perInternalEdge; const perEdge = () => { return (edge) => { return { sourceLabel: edge.source, targetLabel: edge.target }; }; }; exports.perEdge = perEdge; //# sourceMappingURL=edge-projections.js.map