UNPKG

@tripsnek/tmf

Version:

TypeScript Modeling Framework - A TypeScript port of the Eclipse Modeling Framework (EMF)

9 lines 367 B
import { EModelElementImpl } from './emodel-element-impl'; import { ENamedElement } from './enamed-element'; export declare abstract class ENamedElementImpl extends EModelElementImpl implements ENamedElement { name: string; constructor(name?: string); getName(): string; setName(name: string): void; } //# sourceMappingURL=enamed-element-impl.d.ts.map