@accordproject/concerto-core
Version:
Core Implementation for the Concerto Modeling Language
25 lines (24 loc) • 759 B
TypeScript
import IdentifiedDeclaration = require('./identifieddeclaration');
/** Class representing the definition of an Transaction.
* @extends ClassDeclaration
* @see See {@link ClassDeclaration}
*
* @class
* @memberof module:concerto-core
*/
declare class TransactionDeclaration extends IdentifiedDeclaration {
/**
* Create an TransactionDeclaration.
* @param {ModelFile} modelFile the ModelFile for this class
* @param {Object} ast - The AST created by the parser
* @throws {IllegalModelException}
*/
constructor(modelFile: any, ast: any);
/**
* Returns the kind of declaration
*
* @return {string} what kind of declaration this is
*/
declarationKind(): string;
}
export = TransactionDeclaration;