import { ContentModule } from "../contentModule.js"; /** * Module providing extends and implements connection operators */ export const extendsAndImplementsModule = ContentModule.create( "uml/extendsAndImplements", ["common/defaultMarkers"], [], ` this.create = scope.internal.createConnectionOperator scope.extends = create( "extends", endMarkerFactory = scope.defaultMarkers.triangle ) scope.implements = create( "implements", endMarkerFactory = scope.defaultMarkers.triangle, class = list("dashed-connection") ) ` );