UNPKG

@finos/legend-graph

Version:
39 lines 2.56 kB
/** * 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 { Profile } from '../../metamodel/pure/packageableElements/domain/Profile.js'; import { Tag } from '../../metamodel/pure/packageableElements/domain/Tag.js'; import { Enum } from '../../metamodel/pure/packageableElements/domain/Enum.js'; import { Stereotype } from '../../metamodel/pure/packageableElements/domain/Stereotype.js'; import { TaggedValue } from '../../metamodel/pure/packageableElements/domain/TaggedValue.js'; import type { Enumeration } from '../../metamodel/pure/packageableElements/domain/Enumeration.js'; import { Class } from '../../metamodel/pure/packageableElements/domain/Class.js'; import { Constraint } from '../../metamodel/pure/packageableElements/domain/Constraint.js'; import type { PackageableElement } from '../../metamodel/pure/packageableElements/PackageableElement.js'; import type { Type } from '../../metamodel/pure/packageableElements/domain/Type.js'; import { DerivedProperty } from '../../metamodel/pure/packageableElements/domain/DerivedProperty.js'; import { Property } from '../../metamodel/pure/packageableElements/domain/Property.js'; export declare const stub_ElementhWithPackagePath: <T extends PackageableElement>(element: T, packagePath: string) => T; export declare const stub_Tag: (profile: Profile) => Tag; export declare const stub_TaggedValue: (tag: Tag) => TaggedValue; export declare const stub_Stereotype: (profile: Profile) => Stereotype; export declare const stub_Profile: () => Profile; export declare const stub_Enum: (enumeration: Enumeration) => Enum; export declare const stub_Constraint: (_class: Class) => Constraint; export declare const stub_Class: () => Class; export declare const stub_Property: (type: Type, _class: Class) => Property; export declare const stub_DerivedProperty: (type: Type, _class: Class) => DerivedProperty; export declare const isStubbed_PackageableElement: (element: PackageableElement) => boolean; //# sourceMappingURL=DomainModelCreatorHelper.d.ts.map