/** * 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 { V1_ConcreteFunctionDefinition } from '../model/packageableElements/function/V1_ConcreteFunctionDefinition.js'; import { V1_GenericType } from '../model/packageableElements/type/V1_GenericType.js'; import { V1_RelationType, V1_RelationTypeColumn } from '../model/packageableElements/type/V1_RelationType.js'; import type { V1_Type } from '../model/packageableElements/type/V1_Type.js'; import type { Multiplicity } from '../../../../../graph/metamodel/pure/packageableElements/domain/Multiplicity.js'; import type { V1_ValueSpecification } from '../model/valueSpecification/V1_ValueSpecification.js'; export declare const V1_getGenericTypeFullPath: (val: V1_GenericType) => string; export declare const V1_buildFunctionSignatureSuffix: (func: V1_ConcreteFunctionDefinition) => string; export declare const V1_buildFunctionSignature: (func: V1_ConcreteFunctionDefinition) => string; export declare const V1_getFunctionNameWithoutSignature: (func: V1_ConcreteFunctionDefinition) => string; export declare const V1_buildFunctionPrettyName: (element: V1_ConcreteFunctionDefinition, options?: { fullPath?: boolean; spacing?: boolean; notIncludeParamName?: boolean; }) => string; export declare function V1_createRelationType(columns: V1_RelationTypeColumn[]): V1_RelationType; export declare function V1_createRelationTypeColumn(name: string, type: string, typeVariableValues?: V1_ValueSpecification[]): V1_RelationTypeColumn; export declare function V1_createRelationTypeColumnWithGenericType(name: string, type: V1_GenericType, multiplicity: Multiplicity): V1_RelationTypeColumn; export declare function V1_createGenericTypeWithElementPath(path: string, typeVariables?: V1_ValueSpecification[]): V1_GenericType; export declare function V1_createGenericTypeWithRawType(type: V1_Type): V1_GenericType; //# sourceMappingURL=V1_DomainHelper.d.ts.map