diff --git a/packages/concerto-core/types/lib/modelutil.d.ts b/packages/concerto-core/types/lib/modelutil.d.ts index 1ee8ce2d4..0ee83e4b3 100644 --- a/packages/concerto-core/types/lib/modelutil.d.ts +++ b/packages/concerto-core/types/lib/modelutil.d.ts @@ -162,12 +162,4 @@ declare class ModelUtil { * @return {boolean} true if the Value is a valid Map Value */ static isValidMapValue(value: any): boolean; - /** - * Returns the corresponding ClassDeclaration representation of the Map Type - * @param {string} type - the Type of the Map Value - * @param {ModelFile} modelFile - the ModelFile that owns the Property - * @return {Object} the corresponding ClassDeclaration representation - */ - static getTypeDeclaration(type: string, modelFile: ModelFile): any; } -import ModelFile = require("../lib/introspect/modelfile");