@accordproject/concerto-core
Version:
Core Implementation for the Concerto Modeling Language
21 lines (20 loc) • 575 B
TypeScript
import ClassDeclaration = require('./classdeclaration');
/**
* IdentifiedDeclaration
*
* @extends ClassDeclaration
* @see See {@link ClassDeclaration}
* @class
* @memberof module:concerto-core
* @abstract
*/
declare class IdentifiedDeclaration extends ClassDeclaration {
/**
* Create an IdentifiedDeclaration.
* @param {ModelFile} modelFile the ModelFile for this class
* @param {Object} ast - The AST created by the parser
* @throws {IllegalModelException}
*/
constructor(modelFile: any, ast: any);
}
export = IdentifiedDeclaration;