@finos/legend-extension-dsl-diagram
Version:
Legend extension for Diagram DSL
34 lines • 2.68 kB
TypeScript
/**
* Copyright (c) 2020-present, Goldman Sachs
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import type { AssociationView } from '../../../graph/metamodel/pure/packageableElements/diagram/DSL_Diagram_AssociationView.js';
import type { ClassView } from '../../../graph/metamodel/pure/packageableElements/diagram/DSL_Diagram_ClassView.js';
import type { ClassViewReference } from '../../../graph/metamodel/pure/packageableElements/diagram/DSL_Diagram_ClassViewReference.js';
import type { Diagram } from '../../../graph/metamodel/pure/packageableElements/diagram/DSL_Diagram_Diagram.js';
import type { GeneralizationView } from '../../../graph/metamodel/pure/packageableElements/diagram/DSL_Diagram_GeneralizationView.js';
import type { PropertyView } from '../../../graph/metamodel/pure/packageableElements/diagram/DSL_Diagram_PropertyView.js';
import type { RelationshipViewEnd } from '../../../graph/metamodel/pure/packageableElements/diagram/DSL_Diagram_RelationshipViewEnd.js';
import type { RelationshipView } from '../../../graph/metamodel/pure/packageableElements/diagram/DSL_Diagram_RelationshipView.js';
import type { PositionedRectangle } from '../../../graph/metamodel/pure/packageableElements/diagram/geometry/DSL_Diagram_PositionedRectangle.js';
export declare const observe_PositionedRectangle: (metamodel: PositionedRectangle) => PositionedRectangle;
export declare const observe_ClassViewReference: (metamodel: ClassViewReference) => ClassViewReference;
export declare const observe_ClassView: (metamodel: ClassView) => ClassView;
export declare const observe_RelationShipEdgeView: (metamodel: RelationshipViewEnd) => RelationshipViewEnd;
export declare const observe_RelationshipView: (metamodel: RelationshipView) => RelationshipView;
export declare const observe_GeneralizationView: (metamodel: GeneralizationView) => GeneralizationView;
export declare const observe_AssociationView: (metamodel: AssociationView) => AssociationView;
export declare const observe_PropertyView: (metamodel: PropertyView) => PropertyView;
export declare const observe_Diagram: (metamodel: Diagram) => Diagram;
//# sourceMappingURL=DSL_Diagram_ObserverHelper.d.ts.map